forked from iluwatar/java-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added tests for resource-acquisition-is-initialization pattern
- Loading branch information
Showing
3 changed files
with
85 additions
and
0 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
27 changes: 27 additions & 0 deletions
27
...ation/src/test/java/com/iluwatar/resource/acquisition/is/initialization/ClosableTest.java
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package com.iluwatar.resource.acquisition.is.initialization; | ||
|
||
import org.junit.Test; | ||
import org.mockito.InOrder; | ||
|
||
import static org.mockito.Mockito.inOrder; | ||
|
||
/** | ||
* Date: 12/28/15 - 9:31 PM | ||
* | ||
* @author Jeroen Meulemeester | ||
*/ | ||
public class ClosableTest extends StdOutTest { | ||
|
||
@Test | ||
public void testOpenClose() throws Exception { | ||
final InOrder inOrder = inOrder(getStdOutMock()); | ||
try (final SlidingDoor door = new SlidingDoor(); final TreasureChest chest = new TreasureChest()) { | ||
inOrder.verify(getStdOutMock()).println("Sliding door opens."); | ||
inOrder.verify(getStdOutMock()).println("Treasure chest opens."); | ||
} | ||
inOrder.verify(getStdOutMock()).println("Treasure chest closes."); | ||
inOrder.verify(getStdOutMock()).println("Sliding door closes."); | ||
inOrder.verifyNoMoreInteractions(); | ||
} | ||
|
||
} |
53 changes: 53 additions & 0 deletions
53
...ization/src/test/java/com/iluwatar/resource/acquisition/is/initialization/StdOutTest.java
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package com.iluwatar.resource.acquisition.is.initialization; | ||
|
||
import org.junit.After; | ||
import org.junit.Before; | ||
|
||
import java.io.PrintStream; | ||
|
||
import static org.mockito.Mockito.mock; | ||
|
||
/** | ||
* Date: 12/10/15 - 8:37 PM | ||
* | ||
* @author Jeroen Meulemeester | ||
*/ | ||
public abstract class StdOutTest { | ||
|
||
/** | ||
* The mocked standard out {@link PrintStream}, required since some actions don't have any | ||
* influence on accessible objects, except for writing to std-out using {@link System#out} | ||
*/ | ||
private final PrintStream stdOutMock = mock(PrintStream.class); | ||
|
||
/** | ||
* Keep the original std-out so it can be restored after the test | ||
*/ | ||
private final PrintStream stdOutOrig = System.out; | ||
|
||
/** | ||
* Inject the mocked std-out {@link PrintStream} into the {@link System} class before each test | ||
*/ | ||
@Before | ||
public void setUp() { | ||
System.setOut(this.stdOutMock); | ||
} | ||
|
||
/** | ||
* Removed the mocked std-out {@link PrintStream} again from the {@link System} class | ||
*/ | ||
@After | ||
public void tearDown() { | ||
System.setOut(this.stdOutOrig); | ||
} | ||
|
||
/** | ||
* Get the mocked stdOut {@link PrintStream} | ||
* | ||
* @return The stdOut print stream mock, renewed before each test | ||
*/ | ||
final PrintStream getStdOutMock() { | ||
return this.stdOutMock; | ||
} | ||
|
||
} |