Add conversion comments to pom

This commit is contained in:
Mike Cifelli 2018-03-18 17:57:09 -04:00
parent c04f4b6c51
commit b5d817a8ac
3 changed files with 6 additions and 4 deletions

View File

@ -77,7 +77,6 @@
<option name="KEEP_BLANK_LINES_IN_DECLARATIONS" value="1" />
<option name="KEEP_BLANK_LINES_IN_CODE" value="1" />
<option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="0" />
<option name="BLANK_LINES_AFTER_CLASS_HEADER" value="1" />
<option name="ALIGN_MULTILINE_PARAMETERS_IN_CALLS" value="true" />
<option name="ALIGN_MULTILINE_EXTENDS_LIST" value="true" />
<option name="CALL_PARAMETERS_WRAP" value="5" />

View File

@ -16,6 +16,7 @@
</properties>
<build>
<!-- TODO - when everything is converted to kotlin -->
<!--<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>-->
<!--<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>-->
@ -57,6 +58,7 @@
</configuration>
</plugin>
<!-- TODO - remove when everything is converted to kotlin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@ -108,6 +110,8 @@
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit5.version}</version>
</dependency>
<!-- TODO - remove when all test cases converted to junit 5 -->
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
@ -190,6 +194,7 @@
<scope>test</scope>
</dependency>
<!-- TODO - remove when test cases all converted to junit 5 and assertj-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
@ -197,6 +202,7 @@
<scope>test</scope>
</dependency>
<!-- TODO - remove when test cases all converted to junit 5 and assertj-->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>

View File

@ -26,18 +26,15 @@ class FunctionTableTest {
@FunctionNames("GOOD")
class GoodFunction(name: String) : LispFunction() {
override fun call(argumentList: Cons): Nil = NIL
}
@FunctionNames("BAD")
class BadFunction : LispFunction() {
override fun call(argumentList: Cons): Nil = NIL
}
class UglyFunction : LispFunction() {
override fun call(argumentList: Cons): Nil = NIL
}