nngn
Loading...
Searching...
No Matches
static_vector_test.h
Go to the documentation of this file.
1#ifndef NNGN_TESTS_UTILS_STATIC_VECTOR_H
2#define NNGN_TESTS_UTILS_STATIC_VECTOR_H
3
4#include <QTest>
5
6class StaticVectorTest : public QObject {
7 Q_OBJECT
8private slots:
9 void emplace();
10 void erase();
11 void erase_reverse();
12 void erase_emplace();
13 void set_capacity();
14};
15
16#endif
Definition static_vector_test.h:6
void erase_reverse()
Definition static_vector_test.cpp:81
void set_capacity()
Definition static_vector_test.cpp:143
void erase_emplace()
Definition static_vector_test.cpp:105
void erase()
Definition static_vector_test.cpp:57
void emplace()
Definition static_vector_test.cpp:45