Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenquotes.git
M build.gradle
29 29
compileJava {
30 30
  options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
31
  options.compilerArgs.addAll(['--release', '11'])
31 32
}
32 33
D src/main/resources/com/whitemagicsoftware/keenquotes/app.properties
1
application.version=v1.0.1.dirty
1
M src/test/java/com/whitemagicsoftware/keenquotes/KeenQuotesTest.java
44 44
  }
45 45
46
  /**
47
   * Re-enable using <a href="https://www.gutenberg.org/">Project Gutenberg</a>
48
   * texts.
49
   *
50
   * @param filename A plain text file to convert.
51
   * @throws IOException Could not find, open, or read from text file.
52
   */
46 53
  @ParameterizedTest
47 54
  @ValueSource( strings = {"habberton"} )
55
  @Disabled
48 56
  void test_Parse_Story_Converted( final String filename ) throws IOException {
49 57
    final var sb = new StringBuilder( 2 ^ 20 );