Skip to content

Commit 02ab989

Browse files
sec: rename test fixtures
1 parent 31a26d9 commit 02ab989

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/unittests/security/ciphering_engine_test.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ using namespace srsran;
2222
using namespace srsran::security;
2323

2424
/// Fixture class for ciphering engine tests
25-
class fxt_base : public testing::TestWithParam<nea_test_set>
25+
class fxt_nea_base : public testing::TestWithParam<nea_test_set>
2626
{
2727
protected:
2828
void SetUp() override
@@ -48,15 +48,15 @@ class fxt_base : public testing::TestWithParam<nea_test_set>
4848
};
4949

5050
/// Fixture class for ciphering engine tests with NEA1
51-
class fxt_nea1 : public fxt_base
51+
class fxt_nea1 : public fxt_nea_base
5252
{};
5353

5454
/// Fixture class for ciphering engine tests with NEA2
55-
class fxt_nea2 : public fxt_base
55+
class fxt_nea2 : public fxt_nea_base
5656
{};
5757

5858
/// Fixture class for ciphering engine tests with NEA3
59-
class fxt_nea3 : public fxt_base
59+
class fxt_nea3 : public fxt_nea_base
6060
{};
6161

6262
/// Converts a hex string (e.g. 01FA02) to a sec_as_key.

tests/unittests/security/integrity_engine_test.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ using namespace srsran;
2121
using namespace srsran::security;
2222

2323
/// Fixture class for integrity engine tests
24-
class fxt_base : public testing::TestWithParam<nia_test_set>
24+
class fxt_nia_base : public testing::TestWithParam<nia_test_set>
2525
{
2626
protected:
2727
void SetUp() override
@@ -48,15 +48,15 @@ class fxt_base : public testing::TestWithParam<nia_test_set>
4848
};
4949

5050
/// Fixture class for integrity engine tests with NIA1
51-
class fxt_nia1 : public fxt_base
51+
class fxt_nia1 : public fxt_nia_base
5252
{};
5353

5454
/// Fixture class for integrity engine tests with NIA2
55-
class fxt_nia2 : public fxt_base
55+
class fxt_nia2 : public fxt_nia_base
5656
{};
5757

5858
/// Fixture class for integrity engine tests with NIA3
59-
class fxt_nia3 : public fxt_base
59+
class fxt_nia3 : public fxt_nia_base
6060
{};
6161

6262
/// Converts a hex string (e.g. 01FA02) to a sec_as_key.

0 commit comments

Comments
 (0)