如何编写单元测试JWordPress前台项目实战

Posted Java杂记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何编写单元测试JWordPress前台项目实战相关的知识,希望对你有一定的参考价值。

如何编写单元测试【JWordPress前台项目实战】

写在前面

如何在springboot应用中编写单元测试代码呢?带着这个疑问我们走进今天要讲解的主题,在springboot应用中编写junit单元测试代码实现单元测试,下面让我们开始吧

代码

引入pom.xml

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

测试的通用父类

/**
* MIT License
* Copyright (c) 2018 haihua.liu
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the “Software”), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

package cn.liuhaihua.web;

import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

/**
* @ClassName: BaseTest
* @Description: 测试的基础类
* @author Liuhaihua
* @date 2018年7月2日
*
*/

@RunWith(SpringRunner.class)
@SpringBootTest(classes = JWordpressWebApplication.class)
public class BaseTest {

}

测试代码

/**
* MIT License
* Copyright (c) 2018 haihua.liu
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the “Software”), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

package cn.liuhaihua.web;

import org.junit.Assert;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;

import cn.liuhaihua.web.model.WpUsers;
import cn.liuhaihua.web.service.WpUsersService;

/**
@ClassName: WpUsersTest
@Description: 用户测试类
@author Liuhaihua
@date 2018年6月29日
*
*/

public class WpUsersTest extends BaseTest{
@Autowired
private WpUsersService wpUsersService;
/**
@Title: getUserDetail
@Description: 测试获取用户信息方法
@param 参数
@return void 返回类型
@throws
*/

@Test
public void getUserDetail() {
WpUsers user =wpUsersService.getUserDetail(1l);
Assert.assertEquals(“Harries”, user.getDisplayName());
}
}

测试

运行单元测试代码

如何编写单元测试【JWordPress前台项目实战】

JWordpress实战项目介绍

如何编写单元测试【JWordPress前台项目实战】

如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】

如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】 如何编写单元测试【JWordPress前台项目实战】  

以上是关于如何编写单元测试JWordPress前台项目实战的主要内容,如果未能解决你的问题,请参考以下文章

如何编写单元测试-基于Spring

java中springboot集成junit编写单元测试(实战+坑)

Android 单元测试实战—— 调研与选型

Android 单元测试实战—— 调研与选型

技术分享|单元测试推广与实战-在全新的DDD架构上进行单元测试

如何为使用两个数据库(mysql和mongo)的django项目编写单元测试