| 17 | } |
| 18 | |
| 19 | TEST_METHOD(MoveConstructor) |
| 20 | { |
| 21 | XmlSchema s1; |
| 22 | s1.readFile(data_path("xml/COLLADAPhysX3Schema.xsd")); |
| 23 | Assert::IsTrue(s1); |
| 24 | |
| 25 | XmlSchema s2 = move(s1); |
| 26 | Assert::IsFalse(s1); |
| 27 | Assert::IsTrue(s2); |
| 28 | } |
| 29 | |
| 30 | TEST_METHOD(Destructor) |
| 31 | { |