Lines Matching full:value
12 ({ .key = "test_counter", .value = "test" }),
17 * @details The test shall increment the counter value by 1 and check if the
18 * value is incremented correctly.
24 zassert_equal(test_counter_m.value, 0, "Counter value is not 0"); in ZTEST()
29 zassert_equal(test_counter_m.value, 1, "Counter value is not 1"); in ZTEST()
34 zassert_equal(test_counter_m.value, 2, "Counter value is not 2"); in ZTEST()
39 * @details The test shall increment the counter value by arbitrary value
40 * and check if the value is incremented correctly.
49 zassert_equal(test_counter_m.value, 4, "Counter value is not 4"); in ZTEST()
54 zassert_equal(test_counter_m.value, 4, "Counter value is not 4"); in ZTEST()
59 * @details The test shall set the counter value by arbitrary value
60 * and check if the value is incremented correctly.
69 zassert_equal(test_counter_m.value, 20, "Counter value is not 20"); in ZTEST()
74 zassert_equal(test_counter_m.value, 20, "Counter value is not 20"); in ZTEST()