mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
15 lines
329 B
C++
15 lines
329 B
C++
#include "TestHederaAccount.h"
|
|
#include "../../SingletonManager/ConnectionManager.h"
|
|
namespace controller {
|
|
|
|
void TestHederaAccount::SetUp()
|
|
{
|
|
|
|
}
|
|
|
|
TEST_F(TestHederaAccount, TestPick) {
|
|
auto hedera_account = controller::HederaAccount::pick(ServerConfig::HEDERA_TESTNET, false);
|
|
EXPECT_FALSE(hedera_account.isNull());
|
|
}
|
|
}
|