Add RPCCall unit tests (RIPD-1634)

This commit is contained in:
Scott Schurr
2018-08-30 10:47:23 -07:00
committed by Nik Bougalis
parent 4104778067
commit eeb9d92fb0
4 changed files with 7050 additions and 0 deletions

View File

@@ -2244,6 +2244,7 @@ target_sources (rippled PRIVATE
src/test/rpc/NoRipple_test.cpp
src/test/rpc/OwnerInfo_test.cpp
src/test/rpc/Peers_test.cpp
src/test/rpc/RPCCall_test.cpp
src/test/rpc/RPCOverload_test.cpp
src/test/rpc/RobustTransaction_test.cpp
src/test/rpc/ServerInfo_test.cpp

View File

@@ -20,6 +20,7 @@
#ifndef RIPPLE_NET_RPCCALL_H_INCLUDED
#define RIPPLE_NET_RPCCALL_H_INCLUDED
#include <ripple/basics/Log.h>
#include <ripple/core/Config.h>
#include <ripple/json/json_value.h>
#include <boost/asio/io_service.hpp>

File diff suppressed because it is too large Load Diff

View File

@@ -42,6 +42,7 @@
#include <test/rpc/OwnerInfo_test.cpp>
#include <test/rpc/Peers_test.cpp>
#include <test/rpc/RobustTransaction_test.cpp>
#include <test/rpc/RPCCall_test.cpp>
#include <test/rpc/RPCOverload_test.cpp>
#include <test/rpc/ServerInfo_test.cpp>
#include <test/rpc/Status_test.cpp>