Coverage Summary for Class: MyProcessor (dev.suresh.service)

Class Class, % Method, % Branch, % Line, % Instruction, %
MyProcessor 0% (0/1) 0% (0/3) 0% (0/4) 0% (0/9)


 package dev.suresh.service
 
 import com.google.auto.service.*
 import javax.annotation.processing.*
 import javax.lang.model.element.*
 
 @AutoService(Processor::class)
 class MyProcessor : AbstractProcessor() {
   override fun init(processingEnv: ProcessingEnvironment?) {
     super.init(processingEnv)
     println("Initializing MyProcessor...")
   }
 
   override fun process(annotations: MutableSet<out TypeElement>?, roundEnv: RoundEnvironment?) =
       true
 }