Coverage Summary for Class: SuperMarketSystemApplication (com.app.SuperMarketSystem)
| Class | Method, % | Line, % |
|---|---|---|
| SuperMarketSystemApplication | 50% (1/2) | 50% (1/2) |
| SuperMarketSystemApplication$$EnhancerBySpringCGLIB$$77476214 | ||
| Total | 50% (1/2) | 50% (1/2) |
1 package com.app.SuperMarketSystem; 2 3 import org.springframework.boot.SpringApplication; 4 import org.springframework.boot.autoconfigure.SpringBootApplication; 5 import springfox.documentation.swagger2.annotations.EnableSwagger2; 6 7 @EnableSwagger2 8 @SpringBootApplication 9 public class SuperMarketSystemApplication { 10 11 public static void main(String[] args) { 12 SpringApplication.run(SuperMarketSystemApplication.class, args); 13 } 14 15 }