remove some interfaces, cleanup
[platform/upstream/libzypp.git] / tests / zypp / RepoStatus_test.cc
1
2 #include "zypp/base/Logger.h"
3 #include "zypp/base/Exception.h"
4 #include "zypp/TmpPath.h"
5 #include "zypp/RepoStatus.h"
6 #include "zypp/PathInfo.h"
7
8 #include <boost/test/unit_test.hpp>
9 #include <boost/test/parameterized_test.hpp>
10 #include <boost/test/unit_test_log.hpp>
11
12 using boost::unit_test::test_suite;
13 using boost::unit_test::test_case;
14 using namespace boost::unit_test::log;
15
16 using namespace std;
17 using namespace zypp;
18 using namespace zypp::filesystem;
19
20 void repostatus_test()
21 {
22   TmpDir tmpPath;
23   RepoStatus status;
24 }
25
26 test_suite*
27 init_unit_test_suite( int argc, char* argv[] )
28 {
29   test_suite* test= BOOST_TEST_SUITE( "RepoStatus" );
30   test->add( BOOST_TEST_CASE( &repostatus_test ), 0 /* expected zero error */ );
31   return test;
32 }
33