问答详情
源自:3-6 dao层开发

assertequals

assertequals无法调用   可以讲解一下assertequals的使用?

提问者:王榜权 2018-10-09 17:08

个回答

  • Magic_杨
    2018-10-11 10:02:45

    import com.microapp.minapp.entity.Area;
    import org.junit.Ignore;
    import org.junit.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 java.util.Date;
    import java.util.List;
    
    import static org.junit.Assert.*;
    
    @RunWith(SpringRunner.class)
    @SpringBootTest
    public class AreaDaoTest {
    
        @Autowired
        private AreaDao areaDao;
    
        @Test
        public void queryArea() {
            List<Area> areaList = areaDao.queryArea();
            assertEquals(1,areaList.size());
    
        }

    看看是否jar没有引入

    是不是注释没有写全

    检查jdk版本是不是1.8