Skip to content

Commit

Permalink
Added tests for resource-acquisition-is-initialization pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
fluxw42 committed Dec 30, 2015
1 parent 299d612 commit c72faeb
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 0 deletions.
5 changes: 5 additions & 0 deletions resource-acquisition-is-initialization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,10 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
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();
}

}
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;
}

}

0 comments on commit c72faeb

Please sign in to comment.