fix tests

This commit is contained in:
kalaposfos13 2026-06-07 14:25:00 +02:00
parent 37693eca38
commit 9e6ed97ed7
2 changed files with 13 additions and 0 deletions

View File

@ -25,6 +25,7 @@ set(SETTINGS_TEST_SOURCES
# Stubs that replace dependencies
stubs/common_stub.cpp
stubs/core_stub.cpp
stubs/scm_rev_stub.cpp
stubs/sdl_stub.cpp

12
tests/stubs/core_stub.cpp Normal file
View File

@ -0,0 +1,12 @@
// SPDX-FileCopyrightText: Copyright 2026 shadPS4 Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "emulator.h"
namespace Core {
Emulator::Emulator() {}
Emulator::~Emulator() {}
void Emulator::Shutdown() {}
} // namespace Core