mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
25 lines
337 B
C++
25 lines
337 B
C++
#include <xrpl/beast/unit_test.h>
|
|
#include <xrpl/tx/paths/OfferStream.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
|