P1-10:编写测试类

新建测试类

编写测试类

 1 package com.dszh.demo2;
 2
 3 import com.dszh.demo2.entity.User;
 4 import com.dszh.demo2.mapper.UserMapper;
 5 import org.junit.Test;
 6 import org.junit.runner.RunWith;
 7 import org.springframework.beans.factory.annotation.Autowired;
 8 import org.springframework.boot.test.context.SpringBootTest;
 9 import org.springframework.test.context.junit4.SpringRunner;
10
11 import java.util.List;
12
13 @RunWith(SpringRunner.class)
14 @SpringBootTest
15 public class UserTest {
16     @Autowired
17     private UserMapper userMapper;
18
19     @Test
20     public void test1(){
21         System.out.println(("----- selectAll method test ------"));
22         List<User> userList = userMapper.selectList(null);
23         for (User tempUser:userList ) {
24             System.out.println(tempUser);
25         }
26     }
27 }

运行测试类,返回从数据库查询到的数据集

到这里,基本的springboot + mybatis-plus +mysql 后台服务应用就完成了。

原文地址:https://www.cnblogs.com/superisland/p/11022436.html

时间: 2024-11-07 05:19:22

P1-10:编写测试类的相关文章

Algs4-1.2.10编写一个类VisualCounter

1.2.10编写一个类VisualCounter,支持加一和减一操作.它的构造函数接受两个参数N和max,其中N指定了操作的最大次数,max指定了计数器的最大绝对值.作为副作用,用图像显示每次计器变化后的值.答:Draw Point时操作次数作为X坐标,计数器值作为Y坐标. public class VisualCounter{    private int maxOperationTimes;    private int maxCountAbs;    private int operati

android编写测试类

由于网上很多教程,我就不多说.在这里我就说说我遇到的问题. 在android studio编写单元测试类中,在androidTest包下编写了两个类,分别如下 import junit.framework.TestCase; public class Test extends TestCase { Test1 mc = new Test1(); public void test(){ int num = mc.testMethod(1, 2); // System.out.println("这是

【分页查询测试】编写测试类

test下的包路径与main下的包路径保持一致. 测试程序使用@SpringBootTest和@RunWith(SpringRunner.class)注解, 启动测试类会从main下找springBoot启 动类,加载spring容器. @SpringBootTest是一个用于测试的注解 @RunWith(SpringRunner.class) @RunWith就是一个运行器 @RunWith(SpringJUnit4ClassRunner.class),让测试运行于Spring测试环境 原文地

编写测试类,了解ArrayList的方法

这篇文章主要介绍了C#中动态数组用法,实例分析了C#中ArrayList实现动态数组的技巧,非常具有实用价值,需要的朋友可以参考下 本文实例讲述了C#中动态数组用法.分享给大家供大家参考.具体分析如下: ArrayList是一种动态数组,其容量可随着我们的需要自动进行扩充. ArrayList位于System.Collections命名空间中,所以我们在使用时,需要导入此命名空间. 下面,我们还是在Student类的基础上利用ArrayList操作,从而了解ArrayList的用法 public

35.按要求编写Java程序: (1)编写一个接口:InterfaceA,只含有一个方法int method(int n); (2)编写一个类:ClassA来实现接口InterfaceA,实现int method(int n)接口方 法时,要求计算1到n的和; (3)编写另一个类:ClassB来实现接口InterfaceA,实现int method(int n)接口 方法时,要求计算n的阶乘(n

  35.按要求编写Java程序: (1)编写一个接口:InterfaceA,只含有一个方法int method(int n): (2)编写一个类:ClassA来实现接口InterfaceA,实现int method(int n)接口方 法时,要求计算1到n的和: (3)编写另一个类:ClassB来实现接口InterfaceA,实现int method(int n)接口 方法时,要求计算n的阶乘(n!): (4)编写测试类E,在测试类E的main方法中使用接口回调的形式来测试实现 接口的类. p

Java基础-继承-编写一个Java应用程序,设计一个汽车类Vehicle,包含的属性有车轮个数 wheels和车重weight。小车类Car是Vehicle的子类,其中包含的属性有载人数 loader。卡车类Truck是Car类的子类,其中包含的属性有载重量payload。每个 类都有构造方法和输出相关数据的方法。最后,写一个测试类来测试这些类的功 能。

#29.编写一个Java应用程序,设计一个汽车类Vehicle,包含的属性有车轮个数 wheels和车重weight.小车类Car是Vehicle的子类,其中包含的属性有载人数 loader.卡车类Truck是Car类的子类,其中包含的属性有载重量payload.每个 类都有构造方法和输出相关数据的方法.最后,写一个测试类来测试这些类的功 能. package hanqi; public class Vehicle { private int wheels; private int weight

Hibernate系列(二):简单编写HibernateUtil类来优化性能

相对于Hibernate系列(一)中的代码编写HibernateUtil类以提高程序的运行速度 首先,仍然要写一个javabean(User.java): package cn.itcast.hibernate.domain; import java.util.Date; public class User { private int id; private String name; private Date birthday; public int getId() { return id; }

【编程题】编写String类的构造函数、拷贝构造函数、析构函数和赋值函数

[编程题]编写String类的构造函数.拷贝构造函数.析构函数和赋值函数 [题目]:请编写如下4个函数 1 class String 2 { 3 public: 4 String(const char *str = NULL);// 普通构造函数 5 String(const String &other); // 拷贝构造函数 6 ~ String(void); // 析构函数 7 String & operate =(const String &other);// 赋值函数 8

加密测试类

1 /** 2 * 3des加密: 3 */ 4 package com.test; 5 6 import java.security.Key; 7 import java.security.SecureRandom; 8 import javax.crypto.Cipher; 9 import javax.crypto.KeyGenerator; 10 //import sun.misc.BASE64Decoder; 11 //import sun.misc.BASE64Encoder; 12