mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 00:59:44 +00:00
Config: Integrate
This commit is contained in:
parent
1548a15c68
commit
41afe78a44
5 changed files with 33 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
#include <unordered_set>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Core/Config/Config.h"
|
||||
#include "Core/HW/MMIO.h"
|
||||
|
||||
// Tests that the UniqueID function returns a "unique enough" identifier
|
||||
|
@ -29,6 +30,7 @@ TEST(UniqueID, UniqueEnough)
|
|||
|
||||
TEST(IsMMIOAddress, SpecialAddresses)
|
||||
{
|
||||
Config::Init();
|
||||
SConfig::Init();
|
||||
SConfig::GetInstance().bWii = true;
|
||||
|
||||
|
@ -51,6 +53,7 @@ TEST(IsMMIOAddress, SpecialAddresses)
|
|||
EXPECT_TRUE(MMIO::IsMMIOAddress(0x0D800F10)); // Mirror of Wii MMIOs
|
||||
|
||||
SConfig::Shutdown();
|
||||
Config::Shutdown();
|
||||
}
|
||||
|
||||
class MappingTest : public testing::Test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue