improve lib and add template for libs

This commit is contained in:
2022-09-12 14:32:45 +06:00
parent 0ba983cf94
commit c881165417
6 changed files with 13 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
/*
* This Kotlin source file was generated by the Gradle 'init' task.
*/
package project_group.project_name.lib
import kotlin.test.Test
import kotlin.test.assertTrue
class LibraryTest {
@Test fun testSomeLibraryMethod() {
val classUnderTest = Library()
assertTrue(classUnderTest.someLibraryMethod(), "someLibraryMethod should return 'true'")
}
}