@@ -12,7 +12,7 @@ updated*
12
12
13
13
## Building
14
14
15
- To build and deploy the project, simply import into "WPILib 2022 VSCode" by
15
+ To build and deploy the project, simply import into "WPILib 2023 VSCode" by
16
16
opening the folder the project is checked out into, and run the action
17
17
"WPILib: Deploy robot code."
18
18
@@ -30,8 +30,8 @@ Development follows the
30
30
as described by Atlassian. Potential changes should be made on branches specific
31
31
to a given feature, and proposed by creating a pull request into ` master ` .
32
32
33
- SOR's template targets Java 11 , which is required to use and deploy the robot code.
34
- * Do not use features from standards above Java 11 .*
33
+ SOR's template targets Java 17 , which is required to use and deploy the robot code.
34
+ * Do not use features from standards above Java 17 .*
35
35
36
36
### Branches
37
37
@@ -46,4 +46,11 @@ must undergo rigerous testing.
46
46
47
47
Discipline in ensuring the code in ` live ` is thoroughly tested and is promoted
48
48
in batches ensures that there will always exist a version of the robot's code
49
- that is known good and can be used in a match.
49
+ that is known good and can be used in a match.
50
+
51
+ ### Testing
52
+
53
+ Tests should be placed in the traditional Java directory (` src/test/java/ ` )
54
+ corresponding to their location in the robot code.
55
+
56
+ Tests are written with the JUnit 5 library.
0 commit comments