Files
rippled/test.cpp
2012-01-19 10:04:48 -08:00

26 lines
393 B
C++

#include <string>
#include "Application.h"
#include "ScopedLock.h"
#include "Serializer.h"
#include "Wallet.h"
#include "Ledger.h"
#include "SHAMap.h"
extern void DKunitTest();
int main()
{
// Wallet::unitTest();
theApp = new Application();
theApp->run();
Serializer::TestSerializer();
SHAMapNode::ClassInit();
SHAMap::TestSHAMap();
Ledger::unitTest();
return 0;
}