MyProjectService.kt: introduce dummy method to visualise code coverage

This commit is contained in:
Jakub Chrzanowski
2022-09-20 14:53:39 +02:00
committed by Jakub Chrzanowski
parent d76e7494cc
commit 7de60b2524
2 changed files with 15 additions and 2 deletions

View File

@@ -11,4 +11,9 @@ class MyProjectService(project: Project) {
System.getenv("CI")
?: TODO("Don't forget to remove all non-needed sample code files with their corresponding registration entries in `plugin.xml`.")
}
/**
* Chosen by fair dice roll, guaranteed to be random.
*/
fun getRandomNumber() = 4
}