File: io-test.cpp

package info (click to toggle)
actor-framework 0.18.7-1~exp1
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 8,740 kB
  • sloc: cpp: 85,162; sh: 491; python: 187; makefile: 11
file content (13 lines) | stat: -rw-r--r-- 312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#define CAF_TEST_NO_MAIN

#include "caf/test/unit_test_impl.hpp"

#include "io-test.hpp"

int main(int argc, char** argv) {
  using namespace caf;
  init_global_meta_objects<id_block::io_test>();
  io::middleman::init_global_meta_objects();
  core::init_global_meta_objects();
  return test::main(argc, argv);
}