Adding exemplary pytest shell test to show possibilities of new pytest plugin. This test uses bidirectional communication between tester and device under test. Signed-off-by: Grzegorz Chwierut <grzegorz.chwierut@nordicsemi.no>
14 lines
237 B
C
14 lines
237 B
C
/*
|
|
* Copyright (c) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include <zephyr/ztest.h>
|
|
|
|
ZTEST_SUITE(test_pytest, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
ZTEST(test_pytest, test_pytest)
|
|
{
|
|
TC_PRINT("Hello world\n");
|
|
}
|