refactor: Move implies into moxlib

This commit is contained in:
2022-05-13 14:01:05 +02:00
parent 169457c9c9
commit fc69261029
5 changed files with 7 additions and 20 deletions

View File

@@ -211,13 +211,4 @@ void main() {
expect(firstNotNull([null, null, 2]), 2);
});
});
group("implies", () {
test("Truth table test", () {
expect(implies(true, true), true);
expect(implies(true, false), false);
expect(implies(false, true), true);
expect(implies(false, false), true);
});
});
}