]> git.proxmox.com Git - mirror_frr.git/blob - pceplib/test/pcep_timers_event_loop_test.h
Merge pull request #12851 from sri-mohan1/sri-mohan-ldp
[mirror_frr.git] / pceplib / test / pcep_timers_event_loop_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_EVENT_LOOP_TEST_H_
16 #define PCEP_TIMERS_EVENT_LOOP_TEST_H_
17
18 void pcep_timers_event_loop_test_setup(void);
19 void pcep_timers_event_loop_test_teardown(void);
20 void test_walk_and_process_timers_no_timers(void);
21 void test_walk_and_process_timers_timer_not_expired(void);
22 void test_walk_and_process_timers_timer_expired(void);
23 void test_event_loop_null_handle(void);
24 void test_event_loop_not_active(void);
25
26 #endif /* PCEPTIMERINTERNALS_H_ */