Skip to content

Commit

Permalink
breaking the tester, just to check if it is really running
Browse files Browse the repository at this point in the history
  • Loading branch information
biralavor committed May 13, 2024
1 parent 24ab14d commit 5401d9a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions _ci_tdd/test_files/test_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@
/* By: umeneses <umeneses@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/09 19:06:12 by umeneses #+# #+# */
/* Updated: 2024/05/10 19:36:12 by umeneses ### ########.fr */
/* Updated: 2024/05/13 11:29:32 by umeneses ### ########.fr */
/* */
/* ************************************************************************** */

#include "minunit.h"
#include "push_swap.h"
#include "../../program_to_test/src/push_main.c"

MU_TEST(test_pushadd_5plus3)
MU_TEST(test_pushadd_5plus4)
{
// ARRANGE
int actual_result;
int expected_result = 9;
int expected_result = 10;

// ACT
actual_result = push_add(5, 4);
Expand All @@ -41,6 +42,6 @@ MU_TEST(test_pushsubtract_5minus3)

MU_TEST_SUITE(first_tests_suite)
{
MU_RUN_TEST(test_pushadd_5plus3);
MU_RUN_TEST(test_pushadd_5plus4);
MU_RUN_TEST(test_pushsubtract_5minus3);
}

0 comments on commit 5401d9a

Please sign in to comment.