第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

一個(gè)項(xiàng)目中是否可以只有 1 個(gè) IAnnotationTransformer 實(shí)現(xiàn)

一個(gè)項(xiàng)目中是否可以只有 1 個(gè) IAnnotationTransformer 實(shí)現(xiàn)

元芳怎么了 2023-09-06 15:44:42
在使用 TestNG 的項(xiàng)目中是否可以有超過 1 個(gè) IAnnotationTransformer 實(shí)現(xiàn)?我正在使用 TestNg 版本 7.0.0。
查看完整描述

1 回答

?
喵喔喔

TA貢獻(xiàn)1735條經(jīng)驗(yàn) 獲得超5個(gè)贊

TestNG 目前僅允許您連接IAnnotationTransformer.?如果您嘗試插入其中的多個(gè),則將調(diào)用最后添加的一個(gè)。

作為替代方案,您可以構(gòu)建自己的組合,IAnnotationTransformer該組合可用于迭代所有其他注釋轉(zhuǎn)換器實(shí)例。這是一個(gè)示例(可以在上面提到的 github 鏈接中找到)

import java.lang.reflect.Constructor;

import java.lang.reflect.Method;

import java.util.Arrays;

import java.util.List;

import org.testng.IAnnotationTransformer;

import org.testng.annotations.ITestAnnotation;

import org.testng.collections.Lists;

import org.testng.internal.ClassHelper;


public class CompositeTransformer implements IAnnotationTransformer {

? private static final String JVM_ARGS =

? ? ? "com.rationaleemotions.github.issue1894.Listener1, com.rationaleemotions.github.issue1894.Listener2";

? private List<IAnnotationTransformer> transformers = Lists.newArrayList();


? public CompositeTransformer() {

? ? // Ideally this would get a value from the command line. But just for demo purposes

? ? // I am hard-coding the values.

? ? String listeners = System.getProperty("transformers", JVM_ARGS);


? ? Arrays.stream(listeners.split(","))

? ? ? ? .forEach(

? ? ? ? ? ? each -> {

? ? ? ? ? ? ? Class<?> clazz = ClassHelper.forName(each.trim());

? ? ? ? ? ? ? IAnnotationTransformer transformer =

? ? ? ? ? ? ? ? ? (IAnnotationTransformer) ClassHelper.newInstance(clazz);

? ? ? ? ? ? ? transformers.add(transformer);

? ? ? ? ? ? });

? }


? @Override

? public void transform(

? ? ? ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) {

? ? for (IAnnotationTransformer each : transformers) {

? ? ? each.transform(annotation, testClass, testConstructor, testMethod);

? ? }

? }

}


查看完整回答
反對(duì) 回復(fù) 2023-09-06
  • 1 回答
  • 0 關(guān)注
  • 124 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)