Initial win32 webserver
This commit is contained in:
parent
39422838b7
commit
af50eea208
13 changed files with 661 additions and 5 deletions
|
@ -3,8 +3,18 @@ set(NETWORK_UNIT_TEST_FILES
|
|||
network/TestNetworkManagerServer.cpp
|
||||
PARENT_SCOPE
|
||||
)
|
||||
|
||||
set(NETWORK_INTEGRATION_TEST_FILES
|
||||
network/TestWin32WebServer.cpp
|
||||
PARENT_SCOPE
|
||||
)
|
||||
|
||||
set(NETWORK_UNIT_TEST_DEPENDENCIES
|
||||
network
|
||||
PARENT_SCOPE
|
||||
)
|
||||
|
||||
set(NETWORK_INTEGRATION_TEST_DEPENDENCIES
|
||||
network
|
||||
PARENT_SCOPE
|
||||
)
|
10
test/network/TestWin32WebServer.cpp
Normal file
10
test/network/TestWin32WebServer.cpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include "NetworkManager.h"
|
||||
|
||||
#include "TestFramework.h"
|
||||
|
||||
TEST_CASE(TestWin32WebServer, "network")
|
||||
{
|
||||
auto network_manager = NetworkManager::Create();
|
||||
|
||||
network_manager->RunHttpServer();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue