Skip to content

Commit 0a914f9

Browse files
update cases
1 parent 79ab120 commit 0a914f9

18 files changed

+36
-36
lines changed

code/tests/cases/test_cstring.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515

1616
#include "fossil/io/framework.h"
1717

@@ -24,7 +24,7 @@
2424
// * * * * * * * * * * * * * * * * * * * * * * * *
2525

2626
// Define the test suite and add test cases
27-
FOSSIL_TEST_SUITE(c_string_suite);
27+
FOSSIL_SUITE(c_string_suite);
2828
fossil_fstream_t c_string;
2929

3030
// Setup function for the test suite

code/tests/cases/test_cstring.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515

1616
#include "fossil/io/framework.h"
1717

@@ -24,7 +24,7 @@
2424
// * * * * * * * * * * * * * * * * * * * * * * * *
2525

2626
// Define the test suite and add test cases
27-
FOSSIL_TEST_SUITE(cpp_string_suite);
27+
FOSSIL_SUITE(cpp_string_suite);
2828
fossil_fstream_t cpp_string;
2929

3030
// Setup function for the test suite

code/tests/cases/test_device.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515

1616
#include "fossil/io/framework.h"
1717

@@ -23,7 +23,7 @@
2323
// * * * * * * * * * * * * * * * * * * * * * * * *
2424

2525
// Define the test suite and add test cases
26-
FOSSIL_TEST_SUITE(c_device_suite);
26+
FOSSIL_SUITE(c_device_suite);
2727

2828
FOSSIL_SETUP(c_device_suite) {
2929
fossil_io_mouse_init();

code/tests/cases/test_device.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515

1616
#include "fossil/io/framework.h"
1717

@@ -23,7 +23,7 @@
2323
// mock objects are set here.
2424
// * * * * * * * * * * * * * * * * * * * * * * * *
2525

26-
FOSSIL_TEST_SUITE(cpp_device_suite);
26+
FOSSIL_SUITE(cpp_device_suite);
2727

2828
FOSSIL_SETUP(cpp_device_suite) {
2929
// Setup for all device tests (keyboard, mouse, touch)

code/tests/cases/test_error.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515

1616
#include "fossil/io/framework.h"
1717

@@ -23,7 +23,7 @@
2323
// * * * * * * * * * * * * * * * * * * * * * * * *
2424

2525
// Define the test suite and add test cases
26-
FOSSIL_TEST_SUITE(c_error_suite);
26+
FOSSIL_SUITE(c_error_suite);
2727

2828
// Setup function for the test suite
2929
FOSSIL_SETUP(c_error_suite) {

code/tests/cases/test_error.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515

1616
#include "fossil/io/framework.h"
1717

@@ -23,7 +23,7 @@
2323
// * * * * * * * * * * * * * * * * * * * * * * * *
2424

2525
// Define the test suite and add test cases
26-
FOSSIL_TEST_SUITE(cpp_error_suite);
26+
FOSSIL_SUITE(cpp_error_suite);
2727

2828
// Setup function for the test suite
2929
FOSSIL_SETUP(cpp_error_suite) {

code/tests/cases/test_input.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515

1616
#include "fossil/io/framework.h"
1717

@@ -23,7 +23,7 @@
2323
// * * * * * * * * * * * * * * * * * * * * * * * *
2424

2525
// Define the test suite and add test cases
26-
FOSSIL_TEST_SUITE(c_input_suite);
26+
FOSSIL_SUITE(c_input_suite);
2727

2828
// Setup function for the test suite
2929
FOSSIL_SETUP(c_input_suite) {

code/tests/cases/test_input.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515

1616
#include "fossil/io/framework.h"
1717

@@ -23,7 +23,7 @@
2323
// * * * * * * * * * * * * * * * * * * * * * * * *
2424

2525
// Define the test suite and add test cases
26-
FOSSIL_TEST_SUITE(cpp_input_suite);
26+
FOSSIL_SUITE(cpp_input_suite);
2727

2828
// Setup function for the test suite
2929
FOSSIL_SETUP(cpp_input_suite) {

code/tests/cases/test_network.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515
#include "fossil/io/framework.h"
1616

1717
// * * * * * * * * * * * * * * * * * * * * * * * *
@@ -21,7 +21,7 @@
2121
// mock objects are set here.
2222
// * * * * * * * * * * * * * * * * * * * * * * * *
2323

24-
FOSSIL_TEST_SUITE(c_network_suite);
24+
FOSSIL_SUITE(c_network_suite);
2525

2626
// Setup function for the test suite
2727
FOSSIL_SETUP(c_network_suite) {

code/tests/cases/test_network.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Copyright (C) 2024 Fossil Logic. All rights reserved.
1212
* -----------------------------------------------------------------------------
1313
*/
14-
#include <fossil/test/framework.h>
14+
#include <fossil/pizza/framework.h>
1515
#include "fossil/io/framework.h"
1616

1717
// * * * * * * * * * * * * * * * * * * * * * * * *
@@ -21,7 +21,7 @@
2121
// mock objects are set here.
2222
// * * * * * * * * * * * * * * * * * * * * * * * *
2323

24-
FOSSIL_TEST_SUITE(cpp_network_suite);
24+
FOSSIL_SUITE(cpp_network_suite);
2525

2626
// Setup function for the test suite
2727
FOSSIL_SETUP(cpp_network_suite) {

0 commit comments

Comments
 (0)