Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class ThermistorHelperTest {

@Test
void testBasicFunctionality() {

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test will always pass since it’s just assertTrue(true). It’s useful as a quick sanity check that JUnit is set up correctly, but it doesn’t exercise any actual functionality.

// This test will definitely pass just validates basic math, this was for my sanity, java 24 would not work//
// This test will definitely pass just for a test.
assertTrue(true, "Basic test should pass");
}

Expand Down
Loading