mirror of
https://github.com/eclipse/tinydtls.git
synced 2025-10-18 01:02:51 +08:00

Add a subdirectory tests/unit-tests for unit tests based on cunit. The unit tests are run by invoking the executable testdriver or make check. Initial unit tests with test vectors for CCM from RFC 3610 are provided. Change-Id: I3e8eb0e147ff357f54830e15cfe0346f83a5d28b
16 lines
624 B
C
16 lines
624 B
C
/*******************************************************************************
|
|
*
|
|
* Copyright (c) 2020 Olaf Bergmann (TZI) and others.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
* and Eclipse Distribution License v. 1.0 which accompanies this distribution.
|
|
*
|
|
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
|
|
* and the Eclipse Distribution License is available at
|
|
* http://www.eclipse.org/org/documents/edl-v10.php.
|
|
*/
|
|
|
|
#include <CUnit/CUnit.h>
|
|
|
|
CU_pSuite t_init_ccm_tests(void);
|