| 118 | } |
| 119 | |
| 120 | TEST(Document, Parse) { |
| 121 | ParseTest<MemoryPoolAllocator<>, CrtAllocator>(); |
| 122 | ParseTest<MemoryPoolAllocator<>, MemoryPoolAllocator<> >(); |
| 123 | ParseTest<CrtAllocator, MemoryPoolAllocator<> >(); |
| 124 | ParseTest<CrtAllocator, CrtAllocator>(); |
| 125 | } |
| 126 | |
| 127 | TEST(Document, UnchangedOnParseError) { |
| 128 | Document doc; |
nothing calls this directly
no test coverage detected