Files
maiden/test/TestApp.cpp
homeburger f72bd8c44f
Some checks failed
Build and Test verification / build (push) Failing after 26s
Build and Test verification / test (push) Has been skipped
create SDL window
2026-05-09 15:36:53 -05:00

26 lines
323 B
C++

#include <gmock/gmock.h>
#include <memory>
#include "App.hpp"
class TestApp : public testing::Test {
protected:
void createUut() {
uut_ = std::make_unique<App>();
}
std::unique_ptr<App> uut_;
};
TEST_F(TestApp, TestApp_run_nominal) {
createUut();
//EXPECT_EQ(uut_->run(), 0l);
}