2020-07-24 08:34:30 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) 2020 FIRST. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
2020-08-07 09:38:13 -07:00
|
|
|
package edu.wpi.first.math;
|
2020-07-24 08:34:30 -07:00
|
|
|
|
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
|
|
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
|
|
|
|
|
|
2020-08-07 09:38:13 -07:00
|
|
|
public class WPIMathJNITest {
|
2020-07-24 08:34:30 -07:00
|
|
|
@Test
|
|
|
|
|
public void testLink() {
|
2020-08-07 09:38:13 -07:00
|
|
|
assertDoesNotThrow(WPIMathJNI::forceLoad);
|
2020-07-24 08:34:30 -07:00
|
|
|
}
|
|
|
|
|
}
|