mirror of
https://github.com/XRPLF/rippled.git
synced 2026-09-26 23:19:07 +00:00
18 lines
341 B
C++
18 lines
341 B
C++
#include <xrpl/ledger/entries/DIDEntry.h>
|
|
|
|
#include <xrpl/protocol/Indexes.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <ledger/EntryTestHelpers.h>
|
|
|
|
namespace xrpl::test {
|
|
|
|
TEST(DIDEntryTests, Constructors)
|
|
{
|
|
EntryTestEnv e;
|
|
|
|
expectKeylet<DIDEntry>(e, keylet::did(e.alice.id()), "did(account)", e.alice.id());
|
|
}
|
|
|
|
} // namespace xrpl::test
|