14 lines
217 B
Java
14 lines
217 B
Java
|
|
package com.ghy.payment;
|
||
|
|
|
||
|
|
import org.junit.jupiter.api.Test;
|
||
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
||
|
|
|
||
|
|
@SpringBootTest
|
||
|
|
class PaymentApplicationTests {
|
||
|
|
|
||
|
|
@Test
|
||
|
|
void contextLoads() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|