Skip to content

Commit

Permalink
Add unit test #2 for sol_tsuite_fail()
Browse files Browse the repository at this point in the history
Signed-off-by: Abhishek Chakravarti <abhishek@taranjali.org>
  • Loading branch information
achakravarti committed Feb 6, 2019
1 parent 6707bf4 commit 47d0766
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion test/test.t.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,15 @@



/*
* DESC_FAIL_02 - description for sol_tsuite_fail() unit test #2
*/
#define DESC_FAIL_02 "sol_tsuite_fail() should throw SOL_ERNO_PTR when passed" \
" a null pointer for @fail"




/*
* tlog_dummy() - dummy test suite logging callback
*/
Expand Down Expand Up @@ -317,7 +326,7 @@ test_pass_01(void)
static sol_erno
test_pass_02(void)
{
auto sol_tsuite ts; /* dummy test suite */
auto sol_tsuite ts; /* dummy test suite */

SOL_TRY:
/* sol_tsuite_pass() should fail with SOL_ERNO_PTR */
Expand Down Expand Up @@ -358,6 +367,29 @@ test_fail_01(void)



/*
* test_fail_02() - sol_tsuite_fail() unit test #2
*/
static sol_erno
test_fail_02(void)
{
auto sol_tsuite ts; /* dummy test suite */

SOL_TRY:
/* sol_tsuite_fail() should fail with SOL_ERNO_PTR */
sol_try (sol_tsuite_init2 (&ts, tlog_dummy));
sol_try (sol_tsuite_fail (&ts, 0));

SOL_CATCH:
/* check test condition described by DESC_REGISTER_01 */
return SOL_ERNO_PTR == sol_erno_now ()
? SOL_ERNO_NULL
: SOL_ERNO_TEST;
}




/*
* __sol_tsuite_test() - declared in sol/test/suite.h
*/
Expand Down Expand Up @@ -388,6 +420,7 @@ __sol_tsuite_test(sol_tlog *log,
sol_try (sol_tsuite_register (ts, test_pass_01, DESC_PASS_01));
sol_try (sol_tsuite_register (ts, test_pass_02, DESC_PASS_02));
sol_try (sol_tsuite_register (ts, test_fail_01, DESC_FAIL_01));
sol_try (sol_tsuite_register (ts, test_fail_02, DESC_FAIL_02));

/* execute test cases */
sol_try (sol_tsuite_exec (ts));
Expand Down

0 comments on commit 47d0766

Please sign in to comment.