IXWebSocket/test/test_runner.cpp
2019-03-14 18:37:38 -07:00

17 lines
308 B
C++

/*
* test_runner.cpp
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone. All rights reserved.
*/
#define CATCH_CONFIG_RUNNER
#include "catch.hpp"
#include <ixwebsocket/IXSocket.h>
int main(int argc, char* argv[])
{
int result = Catch::Session().run(argc, argv);
return result;
}