Lines Matching refs:a
5 …a unit testing framework developed by RT-Thread. The original intention of designing utest is to m…
9 …a single test performed to achieve a specific test objective. It is a specification that includes …
11 The utest (unit test) framework defines user-written test programs as **test cases**, and a test ca…
13 The test code for a function, specifically through the API provided by the utest framework, is a te…
17 The test unit is a test point subdivided by the function to be tested. Each test point can be the s…
23 …her for testing. In addition, as you can see from the figure, a test case corresponds to a unique …
27 To enable uniform test case code, the test framework utest provides a common API interface for test…
40 | uassert_not_null(value)| If the value is a non-null value, the test passes, otherwise the test fa…
41 | uassert_int_equal(a, b)| If the values of a and b are equal, the test passes, otherwise the test …
42 | uassert_int_not_equal(a, b)| If the values of a and b are not equal, the test passes, otherwise t…
43 | uassert_str_equal(a, b) | If the string a and the string b are the same, the test passes, othe…
44 | uassert_str_not_equal(a, b)| If the string a and the string b are not the same, the test passes, …
64 | testcase | Test case main-bearing function (**specifies** using a function called *static void te…
76 Assuming that there is a `testcases\components\filesystem\dfs\dfs_api_tc.c` test case file in the t…
154 …The test case file must contain a file comment header containing `Copyright`, time, author, and de…
166 …The mainly function of testcase, a test case implementation can only contain one testcase function…
265 * The utest framework is a sequential execution of all **test units** in the *testcase* function
273 - A test case implementation can only export a test body function (testcase function) using `UTEST_…
274 - Write a `README.md` document for the your test case to guide the user through configuring the tes…