-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
2 changed files
with
10 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,15 +41,15 @@ | |
* | ||
* @author Manfred Riem ([email protected]) | ||
*/ | ||
public class YAMLWriterTest { | ||
class YAMLWriterTest { | ||
|
||
/** | ||
* Test writeObject method. | ||
* | ||
* @throws Exception when a serious error occurs. | ||
*/ | ||
@Test | ||
public void testWriteObjectUsingAMap() throws Exception { | ||
void testWriteObjectUsingAMap() throws Exception { | ||
HashMap<String, Object> map = new HashMap<>(); | ||
map.put("stringValue", "this is a string"); | ||
StringWriter stringWriter = new StringWriter(); | ||
|
@@ -64,7 +64,7 @@ public void testWriteObjectUsingAMap() throws Exception { | |
* @throws Exception when a serious error occurs. | ||
*/ | ||
@Test | ||
public void testWriteObjectUsingAMap2() throws Exception { | ||
void testWriteObjectUsingAMap2() throws Exception { | ||
HashMap<String, Object> map = new HashMap<>(); | ||
map.put("integerValue", 1); | ||
StringWriter stringWriter = new StringWriter(); | ||
|
@@ -79,7 +79,7 @@ public void testWriteObjectUsingAMap2() throws Exception { | |
* @throws Exception when a serious error occurs. | ||
*/ | ||
@Test | ||
public void testWriteObjectUsingAMap3() throws Exception { | ||
void testWriteObjectUsingAMap3() throws Exception { | ||
HashMap<String, Object> map = new HashMap<>(); | ||
map.put("booleanValue", true); | ||
StringWriter stringWriter = new StringWriter(); | ||
|