| 34 | } |
| 35 | |
| 36 | TEST_METHOD(MoveConstructor) |
| 37 | { |
| 38 | XmlDoc doc1; |
| 39 | Assert::IsFalse(doc1); |
| 40 | doc1.readFile(data_path("xml/file.dae")); |
| 41 | Assert::IsTrue(doc1); |
| 42 | |
| 43 | XmlDoc doc2(move(doc1)); |
| 44 | Assert::IsFalse(doc1); |
| 45 | Assert::IsTrue(doc2); |
| 46 | } |
| 47 | |
| 48 | TEST_METHOD(Destructor) |
| 49 | { |
nothing calls this directly
no test coverage detected