| 46 | }; |
| 47 | |
| 48 | int main(int ac, char** av) |
| 49 | { |
| 50 | MyDummyComparator dummyComparator; |
| 51 | MockSupportPlugin mockPlugin; |
| 52 | IEEE754ExceptionsPlugin ieee754Plugin; |
| 53 | |
| 54 | mockPlugin.installComparator("MyDummyType", dummyComparator); |
| 55 | TestRegistry::getCurrentRegistry()->installPlugin(&mockPlugin); |
| 56 | TestRegistry::getCurrentRegistry()->installPlugin(&ieee754Plugin); |
| 57 | return CommandLineTestRunner::RunAllTests(ac, av); |
| 58 | } |
| 59 | |
| 60 | #include "AllTests.h" |
nothing calls this directly
no test coverage detected