Skip to content

Commit

Permalink
Documentation | Added Gradle Tasks Table (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomPlum committed Jun 22, 2020
1 parent e3620e4 commit e6ac4c7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ Annotation Processing must be enabled in your IDE for the JMH tests to run.
In IntelliJ; \
`Preferences -> Build, Execution, Deployment -> Compiler -> Annotation Processors`

### Gradle Tasks
| Task | Description |
|--------------------|------------------------------------------------------------|
| `test` | Runs the unit tests for the `implementation` project. |
| `testCoverage` | Runs the unit tests, calculates coverage and verifies it |

## The Codebase
### Package Structure
The package structure was something that changed almost every day. My goal was "package-by-feature". For the first few
Expand Down
2 changes: 1 addition & 1 deletion implementation/src/main/kotlin/com/aoc/orbit/OrbitalMap.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.aoc.orbit

class OrbitalMap(val input: List<String>) {
class OrbitalMap(input: List<String>) {
private val map: Set<Body>

init {
Expand Down

0 comments on commit e6ac4c7

Please sign in to comment.