Skip to content

Commit

Permalink
Test refactoring/renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Mar 7, 2024
1 parent f14d0eb commit 75ea03b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Basic tests for {@link JsonNode} base class and some features
* of implementation classes
*/
public class TestJsonNode extends NodeTestBase
public class JsonNodeBasicTest extends NodeTestBase
{
private final ObjectMapper MAPPER = objectMapper();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Unit tests for verifying functionality of {@link JsonNode} methods that
* convert values to other types
*/
public class TestConversions extends BaseMapTest
public class JsonNodeConversionsTest extends BaseMapTest
{
static class Root {
public Leaf leaf;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* Simple tests to verify that [JACKSON-707] is implemented correctly.
*/
public class TestDeepCopy extends BaseMapTest
public class JsonNodeDeepCopyTest extends BaseMapTest
{
private final ObjectMapper mapper = new ObjectMapper();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;

public class TestFindMethods
public class JsonNodeFindMethodsTest
extends BaseMapTest
{
private final String JSON_SAMPLE = "{ \"a\" : { \"value\" : 3 },"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.databind.JsonNode;

public class TestMissingNode extends NodeTestBase
public class MissingNodeTest extends NodeTestBase
{
public void testMissing()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;

public class TestNullNode extends NodeTestBase
public class NullNodeTest extends NodeTestBase
{
final static class CovarianceBean {
ObjectNode _object;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* This unit test suite tries to verify that JsonNode-based trees
* can be deserialized as expected.
*/
public class TestTreeDeserialization
public class TreeDeserializationTest
extends BaseMapTest
{
final static class Bean {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.node.TestTreeDeserialization.Bean;
import com.fasterxml.jackson.databind.node.TreeDeserializationTest.Bean;

/**
* This unit test suite tries to verify that ObjectMapper
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.exc.InvalidFormatException;

public class TestTreeTraversingParser
public class TreeTraversingParserTest
extends BaseMapTest
{
static class Person {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.fasterxml.jackson.databind.testutil.NoCheckSubTypeValidator;

public class TestTreeWithType extends BaseMapTest
public class TreeWithTypeTest extends BaseMapTest
{
public static class Foo {
public String bar;
Expand Down

0 comments on commit 75ea03b

Please sign in to comment.