mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:55:49 +00:00
Alter coverage 3
This commit is contained in:
parent
f4234d3c8a
commit
b9477b2aad
1 changed files with 8 additions and 0 deletions
|
@ -20,6 +20,8 @@ import org.springframework.boot.SpringApplication;
|
|||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.context.annotation.ImportRuntimeHints;
|
||||
|
||||
import java.util.concurrent.ThreadLocalRandom;
|
||||
|
||||
/**
|
||||
* PetClinic Spring Boot Application.
|
||||
*
|
||||
|
@ -34,4 +36,10 @@ public class PetClinicApplication {
|
|||
SpringApplication.run(PetClinicApplication.class, args);
|
||||
}
|
||||
|
||||
public void vicNewFunction() {
|
||||
for (int i = 0; i < 20; i++) {
|
||||
int x = ThreadLocalRandom.current().nextInt();
|
||||
System.out.println("Vic lalala untested " + x);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue