From f8f95a4a6b1d46289981ab69270a842cb05f2c9e Mon Sep 17 00:00:00 2001 From: Michael Tryby Date: Thu, 28 Feb 2019 16:17:14 -0500 Subject: [PATCH] Working on depends on decorator --- tests/test_hydqual.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_hydqual.cpp b/tests/test_hydqual.cpp index e80c3c8..5dcd726 100644 --- a/tests/test_hydqual.cpp +++ b/tests/test_hydqual.cpp @@ -17,14 +17,14 @@ #include #endif -#define BOOST_TEST_MODULE "hydqual" +#define BOOST_TEST_MODULE hydqual #include #include #include "test_fixtures.hpp" using namespace std; -using namespace boost; +using namespace utf = boost::unit_test; BOOST_AUTO_TEST_SUITE (test_hyd_qual) @@ -157,7 +157,7 @@ BOOST_FIXTURE_TEST_CASE(test_hydr_savefile, FixtureOpenClose) BOOST_CHECK(filesystem::exists(hyd_file) == true); } -BOOST_FIXTURE_TEST_CASE(test_hydr_usefile, FixtureOpenClose, * unit_test::depends_on("test_hyd_qual/test_hydr_savefile")) +BOOST_FIXTURE_TEST_CASE(test_hydr_usefile, FixtureOpenClose, * utf::depends_on("test_hyd_qual/test_hydr_savefile")) { string hyd_file("test_savefile.hyd");