0

最近我正在尝试构建一个像 TestNG 这样的框架,但遇到了 Launcher 的问题(我不知道是 Launcher 问题还是其他只是猜测的问题)。所以这就是我所做的。

  1. 首先,我创建了一个名为 Test 的自定义注解
  2. 用 main 方法写了一个测试注解的实现类(现在我只针对一个注解)
  3. 在实现类的主要方法中,我编写了代码来读取 xml(以便我可以获取类名并使用反射,我正在使用 Test 注释检查类的方法并调用它)。
  4. 现在我用具有测试注释的方法编写了另一个类,并在 xml 文件中提到了类名。现在,当我们使用时,testng我们可以选择将该方法/类作为TestNG运行。
  5. 但就我而言,我不知道如何运行我的 Class,因为没有 main 方法。
  6. 所以我在这一点上感到震惊。请建议我应该做什么。如果我们需要 Launcher,请告诉我们如何创建启动器或任何包含有关 Launcher 信息的教程/书籍/网络链接。

*注意:我知道如果我们使用注释,我们不需要 XML 文件。但是为了简化事情,我稍后会从 XML 中获取类名,我将丢弃 XML。

提前致谢 。

这是我的测试注释

包 com.annoatation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(value=ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Test {

}

这是我使用 Annotation 的课程:

package com.annoatation;

public class TestExample{
    @Test
    public void sampleMethod()
     {
        System.out.println("This is sample method");
    }
    @Test
    public void sampleMethod1()
    {
            System.out.println("This is sample method 1");
    }

}

这是我的主要课程:

package com.annoatation;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

public class Main {
    public static void main(String[] args) {
        TestExample example=new TestExample();
        Method[] method=example.getClass().getMethods();
        for(Method methods:method)
        {
            Test test=methods.getAnnotation(com.annoatation.Test.class);
            if(test!=null)
            {
                try {
                    methods.invoke(example);
                } catch (IllegalArgumentException e) {
                // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IllegalAccessException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (InvocationTargetException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
       }

    }

}

我希望当我单击我的 TestExample 类上的运行方式时,它应该自动调用主类的主要方法。我不确定我们在 java 中说什么(可能是入口点)

4

1 回答 1

0

使用反射创建类的实例并调用带注释的方法:

Class classDefinition = Class.forName(className);
object = classDefinition.newInstance();

Method method = classDefinition.getMethod("methodName");
method.invoke(object);
于 2013-10-08T15:00:50.337 回答