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>
15 lines
291 B
C
15 lines
291 B
C
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
int main(void)
|
|
{
|
|
/* Shell application source code is injected by applied Kconfg SHELL
|
|
* options, no more "extra" functionalities are required for exemplary
|
|
* pytest test.
|
|
*/
|
|
return 0;
|
|
}
|