Paul Zinselmeyer
25a5ca3e2d
- Add Assignment-7 to flake.nix - Implement basic framework of app - Implement proxy subcommand (mostly) - Implement basics of intermediary subcommand
16 lines
375 B
C
16 lines
375 B
C
#include "framework_test.h"
|
|
|
|
bool test_function_true() {
|
|
return assert_true(false, "Test function true");
|
|
}
|
|
|
|
bool test_function_false() {
|
|
return assert_false(false, "Reason why it failed");
|
|
}
|
|
|
|
void framework_test() {
|
|
start_tests("Test Group Name");
|
|
run_test("Test Name", test_function_true);
|
|
run_test("Test Name", test_function_false);
|
|
end_tests();
|
|
}
|