New unit_test framework:

* Header-only!
* No external dependencies or other beast modules
* Compilation options allow for:
  - Stand-alone application to run a single test suite
  - Stand-alone application to run a set of test suites
  - Global suite of tests inline with the host application
  - Disable test suite generation completely
* Existing tests reworked to use the new classes
This commit is contained in:
Vinnie Falco
2014-03-20 17:25:39 -07:00
parent 547019bd1b
commit a865149c65
411 changed files with 4577 additions and 5591 deletions

View File

@@ -17,6 +17,8 @@
*/
//==============================================================================
namespace ripple {
RippleLineCache::RippleLineCache (Ledger::ref l)
: mLock (this, "RippleLineCache", __FILE__, __LINE__)
, mLedger (l)
@@ -35,3 +37,5 @@ AccountItems& RippleLineCache::getRippleLines (const uint160& accountID)
return *it->second;
}
} // ripple