Skip to content

Commit

Permalink
Project template created
Browse files Browse the repository at this point in the history
  • Loading branch information
karacitir committed Oct 5, 2016
1 parent 5a8200b commit 55732c6
Show file tree
Hide file tree
Showing 8 changed files with 70 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="lib" path="lib/easymock-3.2.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
17 changes: 17 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Spreadsheet</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
11 changes: 11 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
Binary file added bin/Spreadsheet.class
Binary file not shown.
Binary file added bin/SpreadsheetTest.class
Binary file not shown.
Binary file added lib/easymock-3.2.jar
Binary file not shown.
18 changes: 18 additions & 0 deletions src/Spreadsheet.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

public class Spreadsheet {

public String get(String cell) {
// to be implemented
return null;
}

public void set(String cell, String value) {
// to be implemented
}

public String evaluate(String cell) {
// to be implemented
return null;
}

}
15 changes: 15 additions & 0 deletions tests/SpreadsheetTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import static org.junit.Assert.*;


import org.junit.Test;


public class SpreadsheetTest {

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

}

}

0 comments on commit 55732c6

Please sign in to comment.