Skip to content

Commit

Permalink
[arser] Add NEG suffix (Samsung#7844)
Browse files Browse the repository at this point in the history
This commit adds NEG suffix to the tests that was supposed to be
negative.

Signed-off-by: seongwoo <[email protected]>
  • Loading branch information
mhs4670go authored Oct 18, 2021
1 parent 4342de1 commit bdb1b40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compiler/arser/tests/arser.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ TEST(BasicTest, OptionalArgument)
EXPECT_THROW(arser.get<bool>("--volume"), std::runtime_error);
}

TEST(BasicTest, NonRequiredOptionalArgument)
TEST(BasicTest, NonRequiredOptionalArgument_NEG)
{
/* arrange */
Arser arser;
Expand All @@ -111,7 +111,7 @@ TEST(BasicTest, NonRequiredOptionalArgument)
EXPECT_THROW(arser.get<int>("--weight"), std::runtime_error);
}

TEST(BasicTest, RequiredOptionalArgument)
TEST(BasicTest, RequiredOptionalArgument_NEG)
{
/* arrange */
Arser arser;
Expand Down Expand Up @@ -395,7 +395,7 @@ TEST(BasicTest, shortMultipleOption)
EXPECT_EQ("I/am/out.put", arser.get<std::string>("--output_path"));
}

TEST(BasicTest, OptWithRequiredDuplicate)
TEST(BasicTest, OptWithRequiredDuplicate_NEG)
{
/* arrange */
Arser arser;
Expand Down

0 comments on commit bdb1b40

Please sign in to comment.