c9883d0b40ebea778452b443eecc1d4b4d4fa8c8
[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 using namespace zypp::repo;
20
21 void repostatus_test()
22 {
23   TmpDir tmpPath;
24   RepoStatus status;
25 }
26
27 test_suite*
28 init_unit_test_suite( int argc, char* argv[] )
29 {
30   test_suite* test= BOOST_TEST_SUITE( "RepoStatus" );
31   test->add( BOOST_TEST_CASE( &repostatus_test ), 0 /* expected zero error */ );
32   return test;
33 }
34