2022-02-28 14:13:31 +01:00
|
|
|
#include "CoreController.h"
|
2022-02-28 16:05:32 +01:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
2022-02-25 11:34:42 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
2022-02-28 16:05:32 +01:00
|
|
|
TEST_CASE( "Core Controller Reboot File Handling", "[reboot-file]" ) {
|
2022-02-28 14:13:31 +01:00
|
|
|
CoreController ctrl;
|
2022-02-28 16:35:16 +01:00
|
|
|
ctrl.performRebootFileHandling(true);
|
2022-02-25 11:34:42 +01:00
|
|
|
}
|