springboot TestNg (一) 环境准备与Helloword

序言

   主要是为了之后调用测试的时候有迹可循

简单概念:

     单元测试:UT(Unit Test)      不依赖于外部环境,细粒度没有明确规定,但一般属于比较小,至于方法级别。

     集成测试:IT( integration Test)   一般依赖于外部数据,用到数据的crud

Tips:所有Maven项目都可以使用mvn clean test方式跑单元测试,特别需要注意,只有文件名是*Test.java才会被执行


明白了简单概念后正题



如果是Eclipse的IDE,可以安装下列插件,3.4版本以上

http://beust.com/eclipse



pom.xml


  4.0.0
  com.study.linge
  TestNgDemo
  0.0.1-SNAPSHOT
  
         
            org.testng
            testng
            6.8.7
            test
        
        
            junit
            junit
            3.8.1
            test
        
  




目录结构:

springboot TestNg (一) 环境准备与Helloword_第1张图片

TestHelloword.java

package com.linge.demo;

public class TestHelloWord {
	public String myEmail(String email){
		return email;
	}
}


测试类创建

springboot TestNg (一) 环境准备与Helloword_第2张图片


TestNg测试类。

package com.linge.demo;

public class TestHelloWord {
	public String myEmail(String email){
		return email;
	}
}


运行

springboot TestNg (一) 环境准备与Helloword_第3张图片


执行结果

[RemoteTestNG] detected TestNG version 6.8.2
[TestNG] Running:
  C:\Users\Administrator\AppData\Local\Temp\testng-eclipse--1239052636\testng-customsuite.xml

PASSED: f

===============================================
    Default test
    Tests run: 1, Failures: 0, Skips: 0
===============================================


===============================================
Default suite
Total tests run: 1, Failures: 0, Skips: 0
===============================================

[TestNG] Time taken by org.testng.reporters.XMLReporter@1b40d5f0: 7 ms
[TestNG] Time taken by org.testng.reporters.SuiteHTMLReporter@6ea6d14e: 19 ms
[TestNG] Time taken by org.testng.reporters.EmailableReporter2@4563e9ab: 10 ms
[TestNG] Time taken by [FailedReporter passed=0 failed=0 skipped=0]: 0 ms
[TestNG] Time taken by org.testng.reporters.jq.Main@2aaf7cc2: 40 ms
[TestNG] Time taken by org.testng.reporters.JUnitReportReporter@45c8e616: 31 ms



你可能感兴趣的:(springboot TestNg (一) 环境准备与Helloword)