class TestNumbers: def test_int_float(self): assert 1 == 1.0 # END test_int_float def test_int_str(self): assert 1 == "1" # END test_int_str # END CLASS TestNumbers