codex
Loading...
Searching...
No Matches
string_bench.hpp
Go to the documentation of this file.
1#ifndef CODEX_STRING_STRING_BENCH_H
2#define CODEX_STRING_STRING_BENCH_H
3
4#include <vector>
5
6#include <QTest>
7
8class StringBench : public QObject {
9 Q_OBJECT
10 std::vector<char> v = {};
11private slots:
12 void initTestCase();
21};
22
23#endif
Definition string_bench.hpp:8
void remove_prefix_c()
void remove_prefix_c_strncmp()
void remove_prefix_mul_data()
void remove_prefix_c_strncmp_data()
void remove_prefix_tern()
void remove_prefix_tern_data()
void remove_prefix_mul()
void initTestCase()
Definition string_bench.cpp:47
void remove_prefix_c_data()
std::vector< char > v
Definition string_bench.hpp:10