move rom_test back to test lol

This commit is contained in:
scawful
2024-08-07 16:35:52 -04:00
parent d9d08b5369
commit f556cc83f6
2 changed files with 1 additions and 1 deletions

View File

@@ -1,20 +0,0 @@
#include "app/rom.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
namespace yaze {
namespace app {
class RomTest : public ::testing::Test {
protected:
Rom rom_;
};
TEST_F(RomTest, RomTest) {
EXPECT_EQ(rom_.size(), 0);
EXPECT_EQ(rom_.data(), nullptr);
}
} // namespace app
} // namespace yaze