1 /**
2 Copyright: Copyright (c) 2017, Joakim Brännström. All rights reserved.
3 License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
4 Author: Joakim Brännström (joakim.brannstrom@gmx.com)
5 */
6 module dextool_test.xml_files;
7 
8 import dextool_test.utility;
9 
10 // dfmt off
11 
12 @("shall be dextool <plugin> as the first two arguments in the logfile")
13 unittest {
14     mixin(envSetup(globalTestdir));
15     makeDextool(testEnv)
16         .addInputArg(testData ~ "stage_2/test_logging.h")
17         .run;
18     readXmlLog(testEnv).sliceContains("dextool_debug ctestdouble").shouldBeTrue;
19 }