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