码迷,mamicode.com
首页 > 其他好文 > 详细

TestNG如何取得测试类名

时间:2014-07-22 22:35:55      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   re   c   

在A类中,如果要得到类名,可以用this.getClass().getSimpleName()或者使用this.getClass().getName(),通过以下方法区别这两个方法

package com.cn.plant;

public class tree {   
  @Test
public void getClassName(){ String strName=this.getClass().getName(); System.out.println("getName输出结果:"+strName); String strSimpleName=this.getClass().getSimpleName(); System.out.println("getSimpleName输出结果:"+strSimpleName); } }

 

Console端输出结果如下:

getName输出结果:com.cn.plant.tree
getSimpleName输出结果:tree

TestNG如何取得测试类名,布布扣,bubuko.com

TestNG如何取得测试类名

标签:style   blog   color   使用   re   c   

原文地址:http://www.cnblogs.com/sylvia-liu/p/3860894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!