blob: 575525f0d50a71978c8beced7611e033b04bc840 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ========================================
Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
======================================== */
#include <public/frameworks/KernelTest.fwrk/headers/TestCase.h>
/// ================================================================================
/// @brief Function to run breaking test.
/// ================================================================================
EXTERN_C Kernel::Void KT_TestBreak() {
KT_RUN_TEST(AlwaysBreak);
}
/// ================================================================================
/// @brief Function to run passing test.
/// ================================================================================
EXTERN_C Kernel::Void KT_TestPass() {
KT_RUN_TEST(AlwaysPass);
}
|