From 001bc219aa4fbf491a2adf9be11aacfa5c0699e5 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 10 Oct 2023 17:15:11 +0200 Subject: [PATCH] Rename some test --- app/src/test/kotlin/io/element/android/app/KonsistTest.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/test/kotlin/io/element/android/app/KonsistTest.kt b/app/src/test/kotlin/io/element/android/app/KonsistTest.kt index 2d1cd2a174..bb063bb2e5 100644 --- a/app/src/test/kotlin/io/element/android/app/KonsistTest.kt +++ b/app/src/test/kotlin/io/element/android/app/KonsistTest.kt @@ -36,7 +36,7 @@ import org.junit.Test class KonsistTest { @Test - fun `classes extending 'Presenter' should have 'Presenter' suffix`() { + fun `Classes extending 'Presenter' should have 'Presenter' suffix`() { Konsist.scopeFromProject() .classes() .withAllParentsOf(Presenter::class) @@ -44,7 +44,7 @@ class KonsistTest { } @Test - fun `function with '@PreviewsDayNight' annotation should have 'Preview' suffix`() { + fun `Functions with '@PreviewsDayNight' annotation should have 'Preview' suffix`() { Konsist .scopeFromProject() .functions() @@ -57,7 +57,7 @@ class KonsistTest { } @Test - fun `top level function with '@Composable' annotation starting with a upper case should be placed in a file with the same name`() { + fun `Top level function with '@Composable' annotation starting with a upper case should be placed in a file with the same name`() { Konsist .scopeFromProject() .functions()