nngn
Loading...
Searching...
No Matches
utils_test.h
Go to the documentation of this file.
1#ifndef NNGN_TEST_UTILS_H
2#define NNGN_TEST_UTILS_H
3
4#include <QTest>
5
6class UtilsTest : public QObject {
7 Q_OBJECT
8private slots:
9 void offsetof_ptr();
10 void read_file();
11 void pointer_flag();
12 void read_file_err();
13 void set_capacity();
14 void const_time_erase();
15};
16
17#endif
Definition utils_test.h:6
void read_file_err()
Definition utils_test.cpp:37
void read_file()
Definition utils_test.cpp:27
void const_time_erase()
Definition utils_test.cpp:68
void set_capacity()
Definition utils_test.cpp:58
void pointer_flag()
Definition utils_test.cpp:45
void offsetof_ptr()
Definition utils_test.cpp:20