tests: respect naming conventions and improve nesting of some test suites
Change-Id: I255c27b552b32570871a9d5f8bda814ba8723c80
Refs: #2497
diff --git a/tests/unit-tests/identity-management-time-fixture.hpp b/tests/unit-tests/identity-management-time-fixture.hpp
index 727da49..3451b30 100644
--- a/tests/unit-tests/identity-management-time-fixture.hpp
+++ b/tests/unit-tests/identity-management-time-fixture.hpp
@@ -22,11 +22,8 @@
#ifndef NDN_TESTS_UNIT_TESTS_IDENTITY_MANAGEMENT_TIME_FIXTURE_HPP
#define NDN_TESTS_UNIT_TESTS_IDENTITY_MANAGEMENT_TIME_FIXTURE_HPP
-#include "security/key-chain.hpp"
-
#include "identity-management-fixture.hpp"
#include "unit-test-time-fixture.hpp"
-#include "boost-test.hpp"
namespace ndn {
namespace tests {
@@ -37,13 +34,9 @@
* Identities added via addIdentity method are automatically deleted
* during test teardown.
*/
-class IdentityManagementTimeFixture : public tests::UnitTestTimeFixture
+class IdentityManagementTimeFixture : public UnitTestTimeFixture
, public IdentityManagementFixture
{
-public:
- IdentityManagementTimeFixture();
-
- ~IdentityManagementTimeFixture();
};
} // namespace tests