Coverage Summary for Class: WordCountVO (io.github.mkuchin.model)

Class Method, % Line, %
WordCountVO 75% (3/ 4) 75% (3/ 4)
WordCountVO$WordCountVOBuilder 100% (1/ 1) 100% (1/ 1)
total 80% (4/ 5) 80% (4/ 5)


1 package io.github.mkuchin.model; 2  3 import lombok.Builder; 4 import lombok.Value; 5  6 @Value 7 @Builder 8 public class WordCountVO { 9  String word; 10  Long count; 11 }