mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
Update checkstyle config to be compatible with spotless. Co-authored-by: Austin Shalit <austinshalit@gmail.com>
17 lines
451 B
Java
17 lines
451 B
Java
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
package edu.wpi.first.math;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class WPIMathJNITest {
|
|
@Test
|
|
public void testLink() {
|
|
assertDoesNotThrow(WPIMathJNI::forceLoad);
|
|
}
|
|
}
|