17 lines
298 B
C
17 lines
298 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <ztest.h>
|
|
extern void test_ecc_dh(void);
|
|
|
|
/**test case main entry*/
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(test_ecc_dh_fn,
|
|
ztest_unit_test(test_ecc_dh));
|
|
ztest_run_test_suite(test_ecc_dh_fn);
|
|
}
|