mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-18 20:49:46 +01:00
15 lines
362 B
C++
15 lines
362 B
C++
|
|
#include "pch.h"
|
||
|
|
#include "TestHelpers.h"
|
||
|
|
|
||
|
|
namespace TestHelpers
|
||
|
|
{
|
||
|
|
// Function to reset the environment variables for tests
|
||
|
|
void ResetTestEnv(MockedInput& input, KeyboardManagerState& state)
|
||
|
|
{
|
||
|
|
input.ResetKeyboardState();
|
||
|
|
input.SetHookProc(nullptr);
|
||
|
|
state.ClearSingleKeyRemaps();
|
||
|
|
state.ClearOSLevelShortcuts();
|
||
|
|
}
|
||
|
|
}
|