File: testUtils.cpp

package info (click to toggle)
eris 1.3.14-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,016 kB
  • ctags: 1,819
  • sloc: cpp: 13,153; sh: 9,106; perl: 287; makefile: 201; ansic: 165
file content (20 lines) | stat: -rw-r--r-- 312 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
#ifdef HAVE_CONFIG_H
    #include "config.h"
#endif

#include <Atlas/Message/Element.h>
#include "testUtils.h"
#include <Eris/Connection.h>

#include <stdexcept>
#include <cassert>

namespace Eris
{

void TestInjector::inject(const Atlas::Objects::Operation::RootOperation& op)
{
    m_con->dispatchOp(op);
}

}