add rom_test.cc

This commit is contained in:
scawful
2024-07-24 10:44:07 -04:00
parent 65d97bbab5
commit 14e7e013a4

20
src/app/rom_test.cc Normal file
View File

@@ -0,0 +1,20 @@
#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