Working on depends on decorator

This commit is contained in:
Michael Tryby
2019-02-28 16:17:14 -05:00
parent 37be05f881
commit f8f95a4a6b

View File

@@ -17,14 +17,14 @@
#include <stdlib.h>
#endif
#define BOOST_TEST_MODULE "hydqual"
#define BOOST_TEST_MODULE hydqual
#include <boost/test/included/unit_test.hpp>
#include <boost/filesystem.hpp>
#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");