WeightCheckHandleServiceImplTest.java 1.1 KB
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() {
    }
}