remove hedera tests

This commit is contained in:
einhorn_b 2021-06-04 12:43:53 +02:00
parent dedcebdb95
commit b5ea409ec0
6 changed files with 0 additions and 54 deletions

View File

@ -1,14 +0,0 @@
#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());
}
}

View File

@ -1,13 +0,0 @@
#include "gtest/gtest.h"
#include "../../controller/HederaAccount.h"
namespace controller {
class TestHederaAccount : public ::testing::Test {
protected:
void SetUp() override;
};
}

View File

@ -1,14 +0,0 @@
#include "TestHederaId.h"
#include "../../SingletonManager/ConnectionManager.h"
namespace controller {
void TestHederaId::SetUp()
{
}
TEST_F(TestHederaId, TestFindTopicId) {
auto hedera_topic_id = controller::HederaId::find(1, ServerConfig::HEDERA_TESTNET);
EXPECT_FALSE(hedera_topic_id.isNull());
}
}

View File

@ -1,13 +0,0 @@
#include "gtest/gtest.h"
#include "../../controller/HederaId.h"
namespace controller {
class TestHederaId : public ::testing::Test {
protected:
void SetUp() override;
};
}