Exemplo n.º 1
0
 def test_not_false(self):
     result = Builtins.not_([True])
     self.assertFalse(result)
Exemplo n.º 2
0
 def test_not_true(self):
     result = Builtins.not_([False])
     self.assertTrue(result)