Skip to content
Snippets Groups Projects
Commit d0a3c036 authored by Peter Thedens's avatar Peter Thedens
Browse files

test only one test

parent 8ce07ee3
No related branches found
No related tags found
1 merge request!23Shift to Unity testing framework
......@@ -241,18 +241,18 @@ void test_that_new_nodes_can_be_created_by_ID() {
int main() {
UNITY_BEGIN();
RUN_TEST(test_adding_2_numbers);
// RUN_TEST(test_adding_2_numbers);
RUN_TEST(test_computing_cycles);
RUN_TEST(test_resetting_cycles);
RUN_TEST(test_accumulator_state);
RUN_TEST(test_that_blocks_only_get_executed_once);
RUN_TEST(tests_that_already_connected_blocks_dont_get_reset);
RUN_TEST(test_that_a_self_loop_computation_terminates);
RUN_TEST(test_that_nodes_only_update_when_their_inputs_change);
RUN_TEST(test_that_updates_propagate_only_to_their_children);
RUN_TEST(test_that_nodes_get_executed_when_updated_even_if_disconnected);
RUN_TEST(test_that_the_get_source_call_works_normally);
RUN_TEST(test_that_the_get_source_call_returns_ID_neg_1_when_invalid_ID_is_passed);
RUN_TEST(test_that_new_nodes_can_be_created_by_ID);
// RUN_TEST(test_resetting_cycles);
// RUN_TEST(test_accumulator_state);
// RUN_TEST(test_that_blocks_only_get_executed_once);
// RUN_TEST(tests_that_already_connected_blocks_dont_get_reset);
// RUN_TEST(test_that_a_self_loop_computation_terminates);
// RUN_TEST(test_that_nodes_only_update_when_their_inputs_change);
// RUN_TEST(test_that_updates_propagate_only_to_their_children);
// RUN_TEST(test_that_nodes_get_executed_when_updated_even_if_disconnected);
// RUN_TEST(test_that_the_get_source_call_works_normally);
// RUN_TEST(test_that_the_get_source_call_returns_ID_neg_1_when_invalid_ID_is_passed);
// RUN_TEST(test_that_new_nodes_can_be_created_by_ID);
return UNITY_END();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment