(self)
| 1223 | |
| 1224 | class GetOperatorsTest(unittest.TestCase): |
| 1225 | def test_get_operator(self): |
| 1226 | self.assertTrue(operators.get_operator("equals")) |
| 1227 | self.assertTrue(operators.get_operator("EQUALS")) |
| 1228 | |
| 1229 | def test_get_operator_returns_same_operator_with_different_cases(self): |
| 1230 | equals = operators.get_operator("equals") |
nothing calls this directly
no outgoing calls
no test coverage detected