]> git.proxmox.com Git - mirror_frr.git/blob - pceplib/test/pcep_utils_counters_test.h
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[mirror_frr.git] / pceplib / test / pcep_utils_counters_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_UTILS_COUNTERS_TEST_H_
16 #define PCEP_UTILS_COUNTERS_TEST_H_
17
18 void test_create_counters_group(void);
19 void test_create_counters_subgroup(void);
20 void test_add_counters_subgroup(void);
21 void test_create_subgroup_counter(void);
22 void test_delete_counters_group(void);
23 void test_delete_counters_subgroup(void);
24 void test_reset_group_counters(void);
25 void test_reset_subgroup_counters(void);
26 void test_increment_counter(void);
27 void test_increment_subgroup_counter(void);
28 void test_dump_counters_group_to_log(void);
29 void test_dump_counters_subgroup_to_log(void);
30
31 #endif