mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
14 lines
310 B
C++
14 lines
310 B
C++
#include "TestHederaId.h"
|
|
#include "../SingletonManager/ConnectionManager.h"
|
|
namespace controller {
|
|
|
|
void TestHederaId::SetUp()
|
|
{
|
|
|
|
}
|
|
|
|
TEST_F(TestHederaId, TestFindTopicId) {
|
|
auto hedera_topic_id = controller::HederaId::find(1, model::table::HEDERA_TESTNET);
|
|
EXPECT_FALSE(hedera_topic_id.isNull());
|
|
}
|
|
} |