This is an automated email from the ASF dual-hosted git repository. wylee pushed a commit to branch 106-move-compiler-test in repository https://gitbox.apache.org/repos/asf/incubator-nemo.git
commit 47792f65bf2d49a1be6c60841c04a7a984861e80 Author: WooYeon <wylee.x...@gmail.com> AuthorDate: Tue Jul 3 16:57:46 2018 +0900 Move CompilerTestUtil to src folder to make it referrable by other packages --- compiler/test/pom.xml | 20 ++++++++++++++++++++ .../java/edu/snu/nemo/compiler/CompilerTestUtil.java | 0 2 files changed, 20 insertions(+) diff --git a/compiler/test/pom.xml b/compiler/test/pom.xml index 790a44c..5dc314f 100644 --- a/compiler/test/pom.xml +++ b/compiler/test/pom.xml @@ -51,5 +51,25 @@ limitations under the License. <artifactId>nemo-examples-beam</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>${junit.version}</version> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>${mockito.version}</version> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>${powermock.version}</version> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito2</artifactId> + <version>${powermock.version}</version> + </dependency> </dependencies> </project> \ No newline at end of file diff --git a/compiler/test/src/test/java/edu/snu/nemo/compiler/CompilerTestUtil.java b/compiler/test/src/main/java/edu/snu/nemo/compiler/CompilerTestUtil.java similarity index 100% rename from compiler/test/src/test/java/edu/snu/nemo/compiler/CompilerTestUtil.java rename to compiler/test/src/main/java/edu/snu/nemo/compiler/CompilerTestUtil.java