summaryrefslogtreecommitdiffstats
path: root/ml/dlib/dlib/test/cmd_line_parser_wchar_t.cpp
blob: f771eeedbd3d6ce300d3a30366c2ce26902a01f1 (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
32
33
34
35
36
37
38
39
40
// Copyright (C) 2003  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.


#include <string>
#include <dlib/string.h>

#include <dlib/cmd_line_parser.h>

#include "tester.h"

#include "cmd_line_parser.h"
namespace  
{

    class cmd_line_parser_tester : public tester
    {
    public:
        cmd_line_parser_tester (
        ) :
            tester ("test_cmd_line_parser_wchar_t",
                    "Runs tests on the cmd_line_parser<wchar_t> component.")
        {}

        void perform_test (
        )
        {
            dlog << LINFO << "testing kernel_1a with wchar_t";
            cmd_line_parser_kernel_test<cmd_line_parser<wchar_t>::kernel_1a>();
            print_spinner();

            dlog << LINFO << "testing kernel_1a_c with wchar_t";
            cmd_line_parser_kernel_test<cmd_line_parser<wchar_t>::kernel_1a_c>();
            print_spinner();
        }
    } a;

}