* @brief Load the projectfile. */
| 61 | * @brief Load the projectfile. |
| 62 | */ |
| 63 | TEST_F(SimpleRightTest, Load) |
| 64 | { |
| 65 | // setUp already created the project file for us, but this |
| 66 | // test is for testing creation and loading.. |
| 67 | if (m_pProjectFile) |
| 68 | delete m_pProjectFile; |
| 69 | m_pProjectFile = new ProjectFile; |
| 70 | ASSERT_TRUE(m_pProjectFile != NULL); |
| 71 | |
| 72 | bool success = m_pProjectFile->Read(FileName); |
| 73 | |
| 74 | // Must succeed |
| 75 | ASSERT_TRUE(success == true); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * @brief Read right path different ways. |
nothing calls this directly
no test coverage detected