From e674810d716e80ded71567c85f88cb9156c88c5d Mon Sep 17 00:00:00 2001 From: Vitaliy Fedoriv Date: Sun, 6 Nov 2016 19:49:09 +0200 Subject: [PATCH] Add test classes for other RestControllers (empty) --- .../samples/petclinic/rest/PetTypeRestControllerTests.java | 5 +++++ .../samples/petclinic/rest/SpecialtyRestControllerTests.java | 5 +++++ .../samples/petclinic/rest/VetRestControllerTests.java | 5 +++++ .../samples/petclinic/rest/VisitRestControllerTests.java | 5 +++++ 4 files changed, 20 insertions(+) create mode 100644 src/test/java/org/springframework/samples/petclinic/rest/PetTypeRestControllerTests.java create mode 100644 src/test/java/org/springframework/samples/petclinic/rest/SpecialtyRestControllerTests.java create mode 100644 src/test/java/org/springframework/samples/petclinic/rest/VetRestControllerTests.java create mode 100644 src/test/java/org/springframework/samples/petclinic/rest/VisitRestControllerTests.java diff --git a/src/test/java/org/springframework/samples/petclinic/rest/PetTypeRestControllerTests.java b/src/test/java/org/springframework/samples/petclinic/rest/PetTypeRestControllerTests.java new file mode 100644 index 000000000..49b07fdfa --- /dev/null +++ b/src/test/java/org/springframework/samples/petclinic/rest/PetTypeRestControllerTests.java @@ -0,0 +1,5 @@ +package org.springframework.samples.petclinic.rest; + +public class PetTypeRestControllerTests { + +} diff --git a/src/test/java/org/springframework/samples/petclinic/rest/SpecialtyRestControllerTests.java b/src/test/java/org/springframework/samples/petclinic/rest/SpecialtyRestControllerTests.java new file mode 100644 index 000000000..0d9307a62 --- /dev/null +++ b/src/test/java/org/springframework/samples/petclinic/rest/SpecialtyRestControllerTests.java @@ -0,0 +1,5 @@ +package org.springframework.samples.petclinic.rest; + +public class SpecialtyRestControllerTests { + +} diff --git a/src/test/java/org/springframework/samples/petclinic/rest/VetRestControllerTests.java b/src/test/java/org/springframework/samples/petclinic/rest/VetRestControllerTests.java new file mode 100644 index 000000000..70124be1a --- /dev/null +++ b/src/test/java/org/springframework/samples/petclinic/rest/VetRestControllerTests.java @@ -0,0 +1,5 @@ +package org.springframework.samples.petclinic.rest; + +public class VetRestControllerTests { + +} diff --git a/src/test/java/org/springframework/samples/petclinic/rest/VisitRestControllerTests.java b/src/test/java/org/springframework/samples/petclinic/rest/VisitRestControllerTests.java new file mode 100644 index 000000000..212919170 --- /dev/null +++ b/src/test/java/org/springframework/samples/petclinic/rest/VisitRestControllerTests.java @@ -0,0 +1,5 @@ +package org.springframework.samples.petclinic.rest; + +public class VisitRestControllerTests { + +}