Skip to content

Commit

Permalink
add direct testing of values
Browse files Browse the repository at this point in the history
  • Loading branch information
abeaucha committed Sep 23, 2024
1 parent 3f8e31b commit d7329e5
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ TEST_CASE(DualPolarization)
auto fromToType = six::DualPolarizationType::toType(strType);

auto asPair = six::sidd::Utilities::convertDualPolarization(fromToType);

TEST_ASSERT_EQ(asPair.first, txType);
TEST_ASSERT_EQ(asPair.second, rcvType);

TEST_ASSERT_EQ(asPair.first.toString(), txType.toString());
TEST_ASSERT_EQ(asPair.second.toString(), rcvType.toString());
}
Expand Down

0 comments on commit d7329e5

Please sign in to comment.