Skip to content

Commit

Permalink
#380 - Renamed *Tests classes to *Test to make sure the Maven build r…
Browse files Browse the repository at this point in the history
…uns them.
  • Loading branch information
odrotbohm committed Sep 2, 2015
1 parent b41402f commit 9d35670
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 72 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*
* @author Oliver Gierke
*/
public class JacksonSerializationTests {
public class JacksonSerializationTest {

ObjectMapper mapper;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @author Oliver Gierke
* @soundtrack Dave Matthews Band - The Stone (Before These Crowded Streets)
*/
public class HopUnitTests {
public class HopUnitTest {

/**
* @see #346
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* @author Greg Turnquist
* @since 0.11
*/
public class TraversonTests {
public class TraversonTest {

URI baseUri;
Server server;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
* @author Oliver Gierke
*/
public class XmlConfigurationIntegrationTests {
public class XmlConfigurationIntegrationTest {

/**
* @see #259
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* @author Oliver Gierke
*/
public class EmbeddedWrappersUnitTests {
public class EmbeddedWrappersUnitTest {

EmbeddedWrappers wrappers = new EmbeddedWrappers(false);

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class TypeReferencesIntegrationTests {
public class TypeReferencesIntegrationTest {

private static final String USER = "\"firstname\" : \"Dave\", \"lastname\" : \"Matthews\"";
private static final String RESOURCE = String.format("{ \"_links\" : { \"self\" : \"/resource\" }, %s }", USER);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

<context:annotation-config />

<bean class="org.springframework.hateoas.config.XmlConfigurationIntegrationTests$HypermediaConfiguration" />
<bean class="org.springframework.hateoas.config.XmlConfigurationIntegrationTest$HypermediaConfiguration" />

</beans>

0 comments on commit 9d35670

Please sign in to comment.