internal class CreateNameTest {

    @ParameterizedTest
    @NullAndEmptySource
    @ValueSource(strings = ["  "])
    fun `there is no creation when the provided value is null or empty or blank`(providedValue: String?) {
        assertThat(createName(providedValue), absent())
    }
}