File: tests_all.c

package info (click to toggle)
netproc 0.6.6-0.1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 908 kB
  • sloc: ansic: 7,876; makefile: 101; sh: 12
file content (38 lines) | stat: -rw-r--r-- 860 bytes parent folder | download
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
29
30
31
32
33
34
35
36
37
38

#include "unity.h"
// clang-format off

// include here test functions definition
void test_hashtable ( void );
void test_full_read ( void );
void test_queue ( void );
void test_str ( void );
void test_rate ( void );
void test_human_readable ( void );
void test_packet ( void );
void test_vector ( void );
void test_sec2clock ( void );
void test_ht_conn( void );

// need to unity
void setUp ( void ) { /* set stuff up here */ }
void tearDown ( void ) { /*  clean stuff up here */ }
// clang-format on

int
main ( void )
{
  UNITY_BEGIN ();
  RUN_TEST ( test_hashtable );
  RUN_TEST ( test_full_read );
  RUN_TEST ( test_queue );
  RUN_TEST ( test_str );
  RUN_TEST ( test_rate );
  RUN_TEST ( test_human_readable );
  RUN_TEST ( test_packet );
  RUN_TEST ( test_vector );
  RUN_TEST ( test_sec2clock );
  RUN_TEST ( test_ht_conn );

  return UNITY_END ();
}