mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 16:56:48 +00:00
24 lines
304 B
C++
24 lines
304 B
C++
#include <xrpl/beast/unit_test/suite.h>
|
|
|
|
namespace xrpl {
|
|
|
|
class OfferStream_test : public beast::unit_test::Suite
|
|
{
|
|
public:
|
|
void
|
|
test()
|
|
{
|
|
pass();
|
|
}
|
|
|
|
void
|
|
run() override
|
|
{
|
|
test();
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(OfferStream, app, xrpl);
|
|
|
|
} // namespace xrpl
|