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

Class Class, % Method, % Line, %
SearchCommand 100% (1/ 1) 100% (2/ 2) 100% (2/ 2)


1 package io.github.mkuchin.model; 2  3 import lombok.Value; 4  5 import java.util.List; 6  7 @Value 8 public class SearchCommand { 9  List<String> searchText; 10 }