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