generated from OakvilleDynamics/frc-robot-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Gradle Action, create unit tests
Updated the Gradle build action to use 'gradle/actions/setup-gradle' rather than the deprecated 'gradle/gradle-build-action' Updated documentation for Actions workflow for Gradle Wrapper Validation Added unit testing, this will run tests on the robot if there are early signs of errors with the robot software.
- Loading branch information
1 parent
e114ee5
commit 8ebf472
Showing
4 changed files
with
41 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/test/com/oakvillerobotics/frc2024/RobotContainerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.oakvillerobotics.frc2024; | ||
|
||
public class RobotContainerTest { | ||
@test | ||
public void createRobotContainer() { | ||
new RobotContainer(); | ||
} | ||
} |