mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-27 00:50:45 +00:00
20 lines
349 B
C++
20 lines
349 B
C++
#include <xrpl/beast/clock/basic_seconds_clock.h>
|
|
#include <xrpl/beast/unit_test/suite.h>
|
|
|
|
namespace beast {
|
|
|
|
class BasicSecondsClock_test : public unit_test::Suite
|
|
{
|
|
public:
|
|
void
|
|
run() override
|
|
{
|
|
BasicSecondsClock::now();
|
|
pass();
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(BasicSecondsClock, beast, beast);
|
|
|
|
} // namespace beast
|