File: openssl-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 (15 lines) | stat: -rw-r--r-- 355 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define CAF_TEST_NO_MAIN

#include "caf/test/unit_test_impl.hpp"

#include "openssl-test.hpp"

#include "caf/io/middleman.hpp"

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