Skip to content

Commit

Permalink
Criação do código base para conversão, criação da classe de teste e m…
Browse files Browse the repository at this point in the history
…udança na estrutura de pastas
  • Loading branch information
Oliveira Juliano committed Nov 3, 2015
1 parent 9756f06 commit 4949a4b
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="src" path="src/test/java"/>
<classpathentry kind="src" path="src/test/resources"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre1.8.0_66">
<attributes>
<attribute name="owner.project.facets" value="java"/>
Expand All @@ -13,5 +15,6 @@
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="output" path="build/classes"/>
</classpath>
4 changes: 3 additions & 1 deletion .settings/org.eclipse.wst.common.component
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="VideoEncoder">
<wb-resource deploy-path="/" source-path="/WebContent" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/test/java"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/test/resources"/>
<property name="context-root" value="VideoEncoder"/>
<property name="java-output-path" value="/VideoEncoder/build/classes"/>
</wb-module>
Expand Down
File renamed without changes.
14 changes: 14 additions & 0 deletions src/test/java/videoencoder/encoding/EncodingTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package videoencoder.encoding;

import static org.junit.Assert.*;

import org.junit.Test;

public class EncodingTest {

@Test
public void testEncode() {
fail("Not yet implemented");
}

}

0 comments on commit 4949a4b

Please sign in to comment.