blob: b37bb6b1ec956179d4ca664e6d9a0014cd7d97fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
* This file is part of the PCEPlib, a PCEP protocol library.
*
* Copyright (C) 2020 Volta Networks https://voltanet.io/
*
* Author : Javier Garcia <javier.garcia@voltanet.io>
*
*/
/*
* Timer definitions to be used internally by the pcep_timers library.
*/
#ifndef PCEP_TIMERS_TEST_H_
#define PCEP_TIMERS_TEST_H_
void pcep_timers_test_teardown(void);
void test_double_initialization(void);
void test_initialization_null_callback(void);
void test_not_initialized(void);
void test_create_timer(void);
void test_cancel_timer(void);
void test_cancel_timer_invalid(void);
void test_reset_timer(void);
void test_reset_timer_invalid(void);
#endif /* PCEPTIMERINTERNALS_H_ */
|