codex
Loading...
Searching...
No Matches
test.hpp
Go to the documentation of this file.
1#ifndef CODEX_ALGO_TEST_H
2#define CODEX_ALGO_TEST_H
3
4#include <QTest>
5
6class AlgoTest : public QObject {
7 Q_OBJECT
8private slots:
9 void rotate_empty();
10 void rotate_end();
11 void rotate_empty_end();
12 void rotate_perm_data();
13 void rotate_perm();
14 void rotate_rec_empty();
15 void rotate_rec_end();
18 void rotate_rec_perm();
19};
20
21#endif
Definition test.hpp:6
void rotate_empty_end()
Definition test.cpp:52
void rotate_rec_perm_data()
Definition test.cpp:60
void rotate_end()
Definition test.cpp:51
void rotate_empty()
Definition test.cpp:50
void rotate_perm_data()
Definition test.cpp:54
void rotate_perm()
Definition test.cpp:53
void rotate_rec_empty()
Definition test.cpp:56
void rotate_rec_end()
Definition test.cpp:57
void rotate_rec_empty_end()
Definition test.cpp:58
void rotate_rec_perm()
Definition test.cpp:59