aboutsummaryrefslogtreecommitdiff
path: root/src/libmatrix/test/util_split_test.h
blob: a8023ff7c169ffc9b2788f475be3e05db1142bd3 (plain)
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
//
// Copyright (c) 2012 Linaro Limited
//
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the MIT License which accompanies
// this distribution, and is available at
// http://www.opensource.org/licenses/mit-license.php
//
// Contributors:
//     Alexandros Frantzis - original implementation.
//
#ifndef UTIL_SPLIT_TEST_H_
#define UTIL_SPLIT_TEST_H_

class MatrixTest;
class Options;

class UtilSplitTestNormal : public MatrixTest
{
public:
    UtilSplitTestNormal() : MatrixTest("Util::split::normal") {}
    virtual void run(const Options& options);
};

class UtilSplitTestQuoted : public MatrixTest
{
public:
    UtilSplitTestQuoted() : MatrixTest("Util::split::quoted") {}
    virtual void run(const Options& options);
};
#endif // UTIL_SPLIT_TEST_H_