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 This file contains static configuration data for testing the cpptestdouble 7 plugin. 8 */ 9 module dextool_test.config; 10 11 import scriptlike : Path, absolutePath; 12 13 enum globalTestdir = "cpp_tests"; 14 15 auto testData() { 16 return Path("testdata/cpp").absolutePath; 17 } 18 19 auto pluginTestData() { 20 return Path("plugin_testdata").absolutePath; 21 }