| 22 | // |
| 23 | |
| 24 | TEST_F(ClassesTests, |
| 25 | HasConstructorReturnsFalseWhenClassDoesNotHaveConstructorWithGivenName) { |
| 26 | Class cl("A"s); |
| 27 | cl.constructors = {}; |
| 28 | |
| 29 | ASSERT_FALSE(cl.hasConstructor("func")); |
| 30 | } |
| 31 | |
| 32 | TEST_F(ClassesTests, |
| 33 | HasConstructorReturnsTrueWhenClassHasConstructorWithGivenName) { |
nothing calls this directly
no test coverage detected