Skip to content

Commit

Permalink
[style] 테스트 코드의 주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
june-777 committed Aug 15, 2024
1 parent e9d2954 commit 5e12a6e
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/test/java/camp/woowak/lab/store/domain/StoreTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ void endTimeSameWithStartTime() {
validMinOrderPriceFixture,
validStartTimeFixture, endTimeSameWithStartTime))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_TIME.getMessage());
}

@Test
Expand All @@ -141,7 +140,6 @@ void endTimeBeforeThanStartTime() {
validMinOrderPriceFixture,
validStartTimeFixture, endTimeBeforeThanStartTime))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_TIME.getMessage());
}

@Test
Expand Down Expand Up @@ -172,7 +170,6 @@ void startTimeWithSeconds() {
validMinOrderPriceFixture,
startTimeWithSeconds, validEndTimeFixture))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_TIME_UNIT.getMessage());
}

@Test
Expand All @@ -188,7 +185,6 @@ void startTimeWithNanoSeconds() {
5000,
startTimeWithNanoSeconds, validEndTimeFixture))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_TIME_UNIT.getMessage());
}

@Test
Expand All @@ -204,7 +200,6 @@ void endTimeWithSeconds() {
5000,
validStartTimeFixture, endTimeWithSeconds))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_TIME_UNIT.getMessage());
}

@Test
Expand All @@ -220,7 +215,6 @@ void endTimeWithNanoSeconds() {
5000,
validStartTimeFixture, endTimeWithNanoSeconds))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_TIME_UNIT.getMessage());
}

}
Expand Down Expand Up @@ -257,7 +251,6 @@ void lessThanMinLengthName() {
validMinOrderPriceFixture,
validStartTimeFixture, validEndTimeFixture))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_NAME_RANGE.getMessage());
}

@Test
Expand All @@ -273,7 +266,6 @@ void greaterThanMaxLengthName() {
validMinOrderPriceFixture,
validStartTimeFixture, validEndTimeFixture))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_NAME_RANGE.getMessage());
}

}
Expand Down Expand Up @@ -306,7 +298,6 @@ void notSongPa() {
validMinOrderPriceFixture,
validStartTimeFixture, validEndTimeFixture))
.isInstanceOf(InvalidStoreCreationException.class);
// .hasMessage(INVALID_ADDRESS.getMessage());
}

}
Expand Down

0 comments on commit 5e12a6e

Please sign in to comment.