added initial test case (does not compile!)

This commit is contained in:
Martin Brodbeck 2018-07-09 16:40:22 +02:00
parent 96113653e7
commit fee508fb96
3 changed files with 20 additions and 1 deletions

10
test/test_seller.cpp Normal file
View file

@ -0,0 +1,10 @@
#include "../src/core/seller.h"
#define BOOST_TEST_MODULE seller
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE( initial_test ) {
Seller seller{};
BOOST_TEST(seller.getUuid().is_nil() == true);
}