backend-infra-engineer: Pre-0.2.2 2024 Q2 snapshot

This commit is contained in:
scawful
2024-04-14 15:49:57 -05:00
parent 546093360f
commit 92cc574e15
113 changed files with 5631 additions and 1872 deletions

View File

@@ -0,0 +1,28 @@
#include "app/zelda3/dungeon/room_object.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "app/emu/cpu/cpu.h"
#include "app/emu/memory/memory.h"
#include "app/emu/memory/mock_memory.h"
#include "app/emu/video/ppu.h"
#include "app/gfx/bitmap.h"
#include "app/rom.h"
namespace yaze_test {
namespace zelda3_test {
using yaze::app::Rom;
using yaze::app::zelda3::dungeon::DungeonObjectRenderer;
TEST(DungeonObjectTest, RenderObjectsAsBitmaps) {
Rom rom;
// rom.LoadFromFile("/Users/scawful/Code/yaze/build/bin/zelda3.sfc"));
// EXPECT_EQ(rom_status, absl::Status::ok());
DungeonObjectRenderer renderer;
}
} // namespace zelda3_test
} // namespace yaze_test