3 test_description='the verbosity options of the test framework itself.'
7 test_expect_success 'print something in test_expect_success and pass' '
9 echo "hello stderr" >&2 &&
12 test_expect_success 'print something in test_expect_success and fail' '
13 echo "hello stdout" &&
14 echo "hello stderr" >&2 &&
17 test_begin_subtest 'print something between test_begin_subtest and test_expect_equal and pass'
19 echo "hello stderr" >&2
20 test_expect_equal "a" "a"
22 test_begin_subtest 'print something test_begin_subtest and test_expect_equal and fail'
24 echo "hello stderr" >&2
25 test_expect_equal "a" "b"