Skip to content

Commit

Permalink
iox-#2052 Remove unneccessary symbol
Browse files Browse the repository at this point in the history
Signed-off-by: Dennis Liu <[email protected]>

Removed the division symbol '\'. Additionally, a new line has been added
between different test sections.
  • Loading branch information
Dennis40816 committed Nov 4, 2023
1 parent a3bd2d0 commit 75a4afa
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ TEST_F(FixedPositionContainer_test, UsingCopyCtorWillNotChangeSourceContainer)

// END test copy constructor


// BEGIN test move constructor

TEST_F(FixedPositionContainer_test, UsingMoveCtorFromEmptyContainerResultsInEmptyContainer)
Expand Down Expand Up @@ -459,6 +460,7 @@ TEST_F(FixedPositionContainer_test, UsingMoveCtorAtNonCopyableTypeShouldCompile)

// END test move constructor


// BEGIN test copy assignment

TEST_F(FixedPositionContainer_test, UsingCopyAssignmentFromEmptyContainerResultsInEmptyContainer)
Expand Down Expand Up @@ -1047,6 +1049,7 @@ TEST_F(FixedPositionContainer_test, UsingCopyAssignmentInsertionShouldFailWhenCa

// END test copy assignment


// BEGIN test move assignment

TEST_F(FixedPositionContainer_test, UsingMoveAssignmentFromEmptyContainerResultsInEmptyContainer)
Expand Down Expand Up @@ -1152,10 +1155,6 @@ TEST_F(FixedPositionContainer_test, UsingMoveAssignmentFromFullCapacityContainer
EXPECT_THAT(sut_complex.empty(), Eq(true));
}

/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////

TEST_F(FixedPositionContainer_test, UsingMoveAssignmentFromEmptyToNonEmptyContainer)
{
::testing::Test::RecordProperty("TEST_ID", "998e06c0-6879-451e-a493-e3e26944feff");
Expand Down Expand Up @@ -1665,10 +1664,9 @@ TEST_F(FixedPositionContainer_test, UsingMoveAssignmentAtNonCopyableTypeShouldCo
EXPECT_THAT(move_sut_noncopy.size(), Eq(EXPECTED_SIZE));
}

/////////////////////////////////////////////////////////

// END test move assignment


// BEGIN test empty

TEST_F(FixedPositionContainer_test, NewlyCreatedContainerIsEmpty)
Expand Down

0 comments on commit 75a4afa

Please sign in to comment.