Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Mar 11, 2019
1 parent aabfc5f commit 6266370
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import org.junit.Test
* @author Sebastien Deleuze
*/
@Suppress("unused", "UNUSED_PARAMETER")
class BeanUtilsKotlinTests {
class KotlinBeanUtilsTests {

@Test
fun `Instantiate immutable class`() {
Expand All @@ -52,7 +52,7 @@ class BeanUtilsKotlinTests {
}

@Test
fun `Instantiate immutable class with optional parameter specified with null value`() {
fun `Instantiate immutable class with optional parameter specified with null value`() {
val constructor = BeanUtils.findPrimaryConstructor(Bar::class.java)!!
val bar = BeanUtils.instantiateClass(constructor, "a", null)
assertEquals("a", bar.param1)
Expand Down

0 comments on commit 6266370

Please sign in to comment.