码迷,mamicode.com
首页 > 编程语言 > 详细

Think in Java 笔记_Chapter20_2_Annocation和Junit

时间:2015-04-05 13:13:18      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

/2015年04月05日12:13:43  

基于Annotation和Reflection的Junit初探:

package cn.seven.shengsiyuan.annocation.junitan;

import org.junit.Test;

public class JunitSource {

	//疑问就是为甚这边不写main方法,方法不被调用就可以直接执行呢??-反射
	@Test
	public void Hello() {
		System.out.println("hello world");
	}
	
}

 

  1. 首先获得要测试的类对应的Class对象
  2. 然后通过 反射 获得该对象的public修饰的Method数组
  3. 遍历该数组,获得每一个Method对象
  4. 判断该Method对象是否被 注解修饰的两种方法
    1. Method对象.isAnnotationPresent(注解类.class)
    2. 注解类  注解类对象=Method对象.getAnnocation(注解类.class).
  5.   然后通过method.invoke来执行该方法

Think in Java 笔记_Chapter20_2_Annocation和Junit

标签:

原文地址:http://www.cnblogs.com/together-sharing-for-freshman/p/4393918.html

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