lots of exercises in java... from https://github.com/exercism/java

POLICIES.md 10KB

Track Policies

This document:

  • describes all current track-wide policies; and
  • lists all policies that should be reviewed in response to any given track event.

Maintainers should refer to this document each time they review a pull request.

Our policies are not set-in-stone. They represent directions chosen at a point in time with the information/context available at that time. We actively encourage contributors to review and critique them. If you have read through the references that informed an existing policy and still feel it should be improved or removed, please comment and describe:

  1. your alternative perspective;
  2. your proposed changes; and
  3. how your proposal balances your own perspective with those already raised during prior discussions.

Event Checklist

Track Event Policies to review
Exercise added/updated Prefer instance methods; Avoid using final; Adhere to best practices; Starter implementations; Ignore noninitial tests; Multiple file submissions; Name test class after class under test; Add hint for the first exercises without starter implementation; Reference tutorial in the first exercises; Avoid returning null; Use ExpectedException
Track rearranged Starter implementations; Multiple file submissions
New issue observed in track Good first patches
"Good first patch" issue completed Good first patches
Installing Java instructions updated Simple onboarding

Policy Descriptions

Prefer instance methods

Most (all?) exercises should be implemented in the form of instance methods since they contain "domain logic" and we (Exercism) want to encourage exemplary software.

References: [1]

Starter implementations

  • Exercises of difficulty 4 or lower: provide stubs for all required constructors and methods. Stubs should include the following body: throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
  • Exercises of difficulty 5 or higher: provide no stubs by default, but either (1) add hints to the hints.md file (which gets merged into the README.md for the exercise) or (2) provide stubs as above for exercises that demand complicated method signatures.

References: [1], [2], [3]

Avoid using final

Avoid using final in user-facing code. Liberal use of the final keyword remains controversial. It adds little value to test suites, and if included in starter implementations, places implicit restrictions on user solutions.

Adhere to best practices

Ensure that all Java code adheres to the best practices listed below:

  • Minimize the accessibility of classes and members (Effective Java, item 13)
  • Always use curly brackest in if statements. This makes your code easier to maintain and easier to read (Oracle style guide, item 7.4) ```java // Please do this if (condition) { doSomething(); }

// Please don't do this if (condition)

doSomething();

if (condition) doSomething();

- Always put opening curly bracket not on a newline ([Oracle style guide, item 7.2](http://www.oracle.com/technetwork/java/javase/documentation/codeconventions-142311.html#431))
```java
// Please do this
for (int i = 0; i < 10; i++) {
    ...
}

// Please don't do this
for (int i = 0; i < 10; i++)
{
    ...
}

Ignore noninitial tests

All but the first test in an exercise test suite should add @Ignore("Remove to run test") (single test) or @Ignore("Remove to run tests") (parametrized test) on the line before the corresponding @Test annotation.

References: [1]

Multiple file submissions

The first exercise in the track whose test suite mandates multiple solution files should be accompanied by a hints.md file reminding the practitioner that the CLI supports multiple file submissions.

References: [1]

Good first patches

Aim to keep 10-20 small and straightforward issues open at eny given time. Identify any such issues by applying the "Good first patch" label. You can view the current list of these issues here.

References: [1]

Simple onboarding

The Installing Java instructions should seek to minimize the number of steps and the number of concepts a new-to-the-track practitioner needs to learn to get to coding.

References: [1]

Name test class after class under test

If you're testing a class called SomeClassName then your test class should be called SomeClassNameTest.

The exception to this is if the tests are split into several test classes where each test class tests different functionality. In that case each class should be named SomeClassNameFunctionalityTest where Functionality is the name of the functionality to be tested in that class. See the clock exercise as an example.

References: [1]

Add hint for the first exercises without starter implementation

According to the starter implementation policy, any exercise with difficulty 4 or lower should have starter implementation. Any exercise with difficulty 5 or above will have no starter implementation (unless its signature is very complicated). This could be confusing to users when tackling their first exercise with difficulty 5 when they are used to starter implementation being provided.

Therefore a hints.md file should be added to the .meta directory for every exercise with difficulty 5. This file should explain what they need to do when there is no starter implementation. The files should all be the same so you can copy it from any other exercise with difficulty 5, e.g. flatten-array.

We add the file to every exercise with difficulty 5 because the structure of the track means that we don't know which exercise will be the first one without starter implementation that a user will be faced with.

References: [1]

Reference tutorial in the first exercises

The hello world exercise has an extensive tutorial on how to solve exercism exercises. This tutorial would probably be useful to have as a reference when solving some of the other earlier exercises as well. Therefore any exercise with difficulty less than 3 should have a hints.md file which references the hello world tutorial.

References: [1]

Avoid returning null

The canonical data for each exercise intentionally doesn't deal with error handling. When an error has occured or a method can't return anything, the canonical data will just mark that as "expected": null. This is because error handling varies from language to language, so the canonical data is leaving it up to each language track to decide how to deal with those situations. It doesn't mean that the method needs to return null.

In Java it's considered bad practice to return null. If you return null then the user of the method has to remember to check for null and they have to look at the implementation of the method to find out that this is necessary.

It's considered best practice to deal with errors and unexpected circumstances by throwing exceptions. If you throw an exception then you force the user to deal with the problem. You can either define your own exception (see the triangle exercise for an example) or use a predefined one (see the collatz-conjecture exercise for an example).

Another option is to use Optionals. This can be more suitable if the case you want to deal with isn't an exceptional occurence, but rather an expected scenario, e.g. a search method not finding what it was searching for. See the word-search exercise for an example where Optional is used.

References: [1]

Use ExceptedException

Some exercises expect exceptions to be thrown in the tests. The exercises on this track are all using JUnit's ExpectedException @Rule feature to support that instead of @Test(expected = SomeException.class). ExpectedException is more powerful than using the @Test annotation, since with ExpectedException you can also inspect the exception's error message and other properties. To be consistent, please use ExpectedException whenever you expect an exception to be thrown.

See the triangle tests for an example of where ExpectedException is used.

References: [1]