14 lines
207 B
Java
14 lines
207 B
Java
|
package com.jwl.driver.server;
|
||
|
|
||
|
import org.junit.Test;
|
||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||
|
|
||
|
@SpringBootTest
|
||
|
class DriverServerApplicationTests {
|
||
|
|
||
|
@Test
|
||
|
void contextLoads() {
|
||
|
}
|
||
|
|
||
|
}
|