Skip to content

Commit

Permalink
RUM-6286: post-review fixes - align test names with methods
Browse files Browse the repository at this point in the history
  • Loading branch information
satween committed Dec 18, 2024
1 parent f4159a6 commit 2255594
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.junit.jupiter.api.extension.Extensions
internal class StringBuilderExtKtTest {

@Test
fun `M add char W addIfNotEmpty {buffer is not empty}`(
fun `M add char W appendIfNotEmpty {buffer is not empty}`(
@StringForgery(regex = ".+") initialContent: String
) {
// Given
Expand All @@ -35,7 +35,7 @@ internal class StringBuilderExtKtTest {
}

@Test
fun `M add str W addIfNotEmpty {buffer is not empty}`(
fun `M add str W appendIfNotEmpty {buffer is not empty}`(
@StringForgery(regex = ".+") initialContent: String
) {
// Given
Expand All @@ -49,7 +49,7 @@ internal class StringBuilderExtKtTest {
}

@Test
fun `M not add any char W addIfNotEmpty {buffer is empty}`() {
fun `M not add any char W appendIfNotEmpty {buffer is empty}`() {
// Given
val buffer = StringBuilder()

Expand All @@ -61,7 +61,7 @@ internal class StringBuilderExtKtTest {
}

@Test
fun `M not add any str W addIfNotEmpty {buffer is empty}`() {
fun `M not add any str W appendIfNotEmpty {buffer is empty}`() {
// Given
val buffer = StringBuilder()

Expand Down

0 comments on commit 2255594

Please sign in to comment.