#include "app/rom.h" #include #include namespace yaze_test { using yaze::app::Rom; class RomTest : public ::testing::Test { protected: Rom rom_; }; TEST_F(RomTest, RomTest) { EXPECT_EQ(rom_.size(), 0); EXPECT_EQ(rom_.data(), nullptr); } } // namespace yaze_test