File: ImplementationClassUID.cpp

package info (click to toggle)
odil 0.13.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,476 kB
  • sloc: cpp: 55,982; python: 3,947; javascript: 460; xml: 182; makefile: 99; sh: 36
file content (43 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download | duplicates (6)
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
#define BOOST_TEST_MODULE ImplementationClassUID
#include <boost/test/unit_test.hpp>

#include <sstream>
#include <string>

#include "odil/pdu/ImplementationClassUID.h"

std::string const data(
    "\x52\x00\x00\x03"
    "foo",
    7
);

BOOST_AUTO_TEST_CASE(Constructor)
{
    odil::pdu::ImplementationClassUID const item("foo");
    BOOST_REQUIRE_EQUAL(item.get_implementation_class_uid(), "foo");
}

BOOST_AUTO_TEST_CASE(FromStream)
{
    std::istringstream stream(data);
    odil::pdu::ImplementationClassUID const item(stream);

    BOOST_REQUIRE_EQUAL(item.get_implementation_class_uid(), "foo");
}

BOOST_AUTO_TEST_CASE(ImplementationClassUID)
{
    odil::pdu::ImplementationClassUID item("foo");
    item.set_implementation_class_uid("bar");
    BOOST_REQUIRE_EQUAL(item.get_implementation_class_uid(), "bar");
}

BOOST_AUTO_TEST_CASE(Write)
{
    odil::pdu::ImplementationClassUID const item("foo");
    std::ostringstream stream;
    stream << item;

    BOOST_REQUIRE_EQUAL(stream.str(), data);
}