WeightCheckHandleServiceImplTest.java
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.sy.service.impl;
import com.sy.service.WeightCheckHandleService;
import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import static org.junit.jupiter.api.Assertions.*;
@SpringBootTest
class WeightCheckHandleServiceImplTest {
@Autowired
WeightCheckHandleService weightCheckHandleService;
@Test
void checkExportDownLoading() {
weightCheckHandleService.checkExportDownLoading(21540,10500,2200,14960);
}
@Test
void checkImportDlv() {
weightCheckHandleService.checkImportDlv(33180,20300,12653.00,20280);
}
@Test
void checkAllocateOrDispatch(){
weightCheckHandleService.checkAllocateOrDispatch(13220,10500,3125,0);
}
@Test
void checkResult() {
}
@Test
void checkImportAtCheckIN() {
}
@Test
void checkEmpty() {
}
@Test
void checkFlag() {
}
@Test
void valueDob() {
}
}