| 23 | } |
| 24 | |
| 25 | TEST_METHOD(OperatorBool) |
| 26 | { |
| 27 | XmlNode null; |
| 28 | Assert::IsFalse(null); |
| 29 | |
| 30 | XmlDoc doc; |
| 31 | doc.readFile(data_path("xml/file.dae")); |
| 32 | XmlNode root = doc.root(); |
| 33 | Assert::IsTrue(root); |
| 34 | } |
| 35 | |
| 36 | TEST_METHOD(OperatorIsEqual) |
| 37 | { |
nothing calls this directly
no test coverage detected