1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#define BOOST_TEST_MODULE ApplicationContext
#include <boost/test/unit_test.hpp>
#include <sstream>
#include <string>
#include "odil/Exception.h"
#include "odil/pdu/ApplicationContext.h"
std::string const data(
"\x10\x00\x00\x03"
"foo",
7
);
BOOST_AUTO_TEST_CASE(FromString)
{
odil::pdu::ApplicationContext const context("foo");
BOOST_REQUIRE_EQUAL(context.get_name(), "foo");
}
BOOST_AUTO_TEST_CASE(FromStream)
{
std::istringstream stream(data);
odil::pdu::ApplicationContext const context(stream);
BOOST_REQUIRE_EQUAL(context.get_name(), "foo");
}
BOOST_AUTO_TEST_CASE(Name)
{
odil::pdu::ApplicationContext context("foo");
context.set_name("other");
BOOST_REQUIRE_EQUAL(context.get_name(), "other");
}
BOOST_AUTO_TEST_CASE(Write)
{
odil::pdu::ApplicationContext const context("foo");
std::ostringstream stream;
stream << context;
BOOST_REQUIRE_EQUAL(stream.str(), data);
}
|