David Whitlock

Results 47 comments of David Whitlock

Another helpful method would read the contents of a text file into a `String`.

With regards to the use of `${grader}` that IntelliJ doesn't like: ``` ${grader} ``` There is a way to activate a profile based on a property being set: https://maven.apache.org/guides/introduction/introduction-to-profiles.html However,...

I tried using a custom `settings.xml` file for the tests: https://maven.apache.org/archetype/maven-archetype-plugin/integration-test-mojo.html#settingsFile But that didn't seem to activate the `grader` profile. I tried changing the profile to be activated by a...

Also, based on https://github.com/DavidWhitlock/PortlandStateJavaSummer2022/commit/c438e5a7fd5081cdd6eab04f580408b46400563c, I should do the following: * In `Project4IT`, assert that nothing is written to standard error when invoking the `main` method successfully * This replaces the...

Also, in the REST project assignment the description of the `-search` option isn't strictly correct: ``` If the -search option is provided, only the customer, begin and end are required...

I wrote the test, but it's not passing because the JVM returns an exit code of 255 when there is any failing koan. When the "interactive = false" feature was...

Hey, @matyb. I was leaning towards the first option. Thank you for the breadcrumbs. I'll give it a try on my fork and, if it works for me, I'll put...