Coverage Summary for Class: GreetingService (org.example.greeting)

Class Class, % Method, % Line, %
GreetingService 100% (1/1) 100% (2/2) 100% (3/3)


1 package org.example.greeting 2  3 import org.springframework.stereotype.Service 4  5 @Service 6 class GreetingService { 7  private var storedGreetings = listOf("hello") 8  9  fun getGreetings(): List<String> = storedGreetings 10 }