11 lines
225 B
C++
11 lines
225 B
C++
|
#define BOOST_TEST_MODULE database
|
||
|
|
||
|
#include "../src/core/database.h"
|
||
|
|
||
|
#include <boost/test/included/unit_test.hpp>
|
||
|
|
||
|
//using namespace boost::unit_test;
|
||
|
|
||
|
BOOST_AUTO_TEST_CASE( create_database ) {
|
||
|
Database db("test.db");
|
||
|
}
|