Skip to content

Commit

Permalink
[eclipse-ee4j#617]Made new tests public
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Pinsky <[email protected]>
  • Loading branch information
api-from-the-ion committed Oct 13, 2023
1 parent 4e5a0a1 commit e5346b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
.idea/
.settings/
/.DS_Store
/.sdkmanrc
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ public void testAdaptedRootType() throws Exception {
}

@Test
void testCustomAdapterInEnum() throws Exception {
public void testCustomAdapterInEnum() throws Exception {
try (Jsonb jsonb = JsonbBuilder.create()) {

Vegetables expected = Vegetables.TOMATO;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ public void testCustomSerializersInContainer() throws Exception {
}

@Test
void testCustomSerializersAndDeserializersInEnum() throws Exception {
public void testCustomSerializersAndDeserializersInEnum() throws Exception {
try (Jsonb jsonb = JsonbBuilder.create()) {

Colors expected = Colors.GREEN;
Expand All @@ -899,7 +899,7 @@ void testCustomSerializersAndDeserializersInEnum() throws Exception {
}

@Test
void testJsonbPropertyInEnum() throws Exception {
public void testJsonbPropertyInEnum() throws Exception {
try (Jsonb jsonb = JsonbBuilder.create()) {

Cars expected = Cars.FORD;
Expand All @@ -911,7 +911,7 @@ void testJsonbPropertyInEnum() throws Exception {
}

@Test
void testNoJsonbPropertyInEnum() throws Exception {
public void testNoJsonbPropertyInEnum() throws Exception {
try (Jsonb jsonb = JsonbBuilder.create()) {

Cars expected = Cars.FIAT;
Expand Down

0 comments on commit e5346b3

Please sign in to comment.