IODA Bundle
TestRunnerApplication.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 1996-2012 ECMWF.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 /// \file TestRunnerApplication.h
12 ///
13 /// @author Piotr Kuchta, ECMWF, Feb 2009
14 
15 #include <sstream>
16 
17 #include "Tool.h"
18 #include "TestCase.h"
19 #include "ToolFactory.h"
20 #include "TestRunnerApplication.h"
21 #include "TestRunner.h"
22 
23 namespace odc {
24 namespace tool {
25 namespace test {
26 
28 : ODBApplication(argc, argv)
29 {}
30 
32 
34 {
35  TestRunner testRunner(commandLineParser());
36  testRunner.run();
37 }
38 
39 } // namespace test
40 } // namespace tool
41 } // namespace odc
42 
CommandLineParser & commandLineParser()
Definition: ColumnInfo.h:23