| Author | Dave Jarvis <email> |
|---|---|
| Date | 2021-06-20 09:14:53 GMT-0700 |
| Commit | f523bc732b7b797068059a93ae299d003c94cdc3 |
| Parent | d6c9761 |
| compileJava { | ||
| options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" | ||
| + options.compilerArgs.addAll(['--release', '11']) | ||
| } | ||
| -application.version=v1.0.1.dirty | ||
| + |
| } | ||
| + /** | ||
| + * Re-enable using <a href="https://www.gutenberg.org/">Project Gutenberg</a> | ||
| + * texts. | ||
| + * | ||
| + * @param filename A plain text file to convert. | ||
| + * @throws IOException Could not find, open, or read from text file. | ||
| + */ | ||
| @ParameterizedTest | ||
| @ValueSource( strings = {"habberton"} ) | ||
| + @Disabled | ||
| void test_Parse_Story_Converted( final String filename ) throws IOException { | ||
| final var sb = new StringBuilder( 2 ^ 20 ); |
| Delta | 10 lines added, 1 line removed, 9-line increase |
|---|