| 54 | }; |
| 55 | |
| 56 | TEST(ComparatorsAndCopiersRepository, InstallCopierAndRetrieveIt) |
| 57 | { |
| 58 | MyCopier copier; |
| 59 | MockNamedValueComparatorsAndCopiersRepository repository; |
| 60 | repository.installCopier("MyType", copier); |
| 61 | POINTERS_EQUAL(&copier, repository.getCopierForType("MyType")); |
| 62 | repository.clear(); |
| 63 | } |
| 64 | |
| 65 | TEST(ComparatorsAndCopiersRepository, ComparatorAndCopierByTheSameNameShouldBothBeFound) |
| 66 | { |
nothing calls this directly
no test coverage detected