EXPECT_EQ(2u,device().numBlocks());// In the beginning, there is two blocks (the root block and the created file). If that is not true anymore, we'll have to adapt the test case.
node->rename("/newname");
EXPECT_EQ(2u,device().numBlocks());// Still same number of blocks
}
// TODO Add similar test cases (i.e. checking number of blocks) for other situations in rename, and also for other operations (e.g. deleting files).
EXPECT_EQ(3u,device().numBlocks());// In the beginning, there is three blocks (the root block and the two created files). If that is not true anymore, we'll have to adapt the test case.
node->rename("/newexistingname");
EXPECT_EQ(2u,device().numBlocks());// Only the blocks of one file are left