MCPcopy Create free account
hub / github.com/KhronosGroup/OpenCOLLADA / TEST_METHOD

Function TEST_METHOD

DAEValidator/tests/src/XmlDocTests.cpp:36–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 9

data_pathFunction · 0.85
rootMethod · 0.80
getRootNamespaceMethod · 0.80
firstChildMethod · 0.80
setTempRootMethod · 0.80
readFileMethod · 0.45
sizeMethod · 0.45
resetMethod · 0.45
emptyMethod · 0.45

Tested by

no test coverage detected