本文整理汇总了Java中org.junit.jupiter.api.extension.ExtensionContext.Namespace类的典型用法代码示例。如果您正苦于以下问题:Java Namespace类的具体用法?Java Namespace怎么用?Java Namespace使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Namespace类属于org.junit.jupiter.api.extension.ExtensionContext包,在下文中一共展示了Namespace类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: when
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
@Test
void testInvokeDataProviderMethodToRetrieveDataShouldThrowParameterResolutionExceptionIfDataProviderInvocationThrows()
throws Exception {
// Given:
Method dataProviderMethod = this.getClass().getDeclaredMethod(
"testInvokeDataProviderMethodToRetrieveDataShouldThrowParameterResolutionExceptionIfDataProviderInvocationThrows");
when(extensionContext.getRoot()).thenReturn(extensionContext);
when(extensionContext.getStore(any(Namespace.class))).thenReturn(store);
// When:
Exception result = assertThrows(ParameterResolutionException.class,
() -> underTest.invokeDataProviderMethodToRetrieveData(dataProviderMethod, true, extensionContext));
// Then:
assertThat(result).hasMessageMatching("Exception while invoking dataprovider method '.*': .*");
}
示例2: getMock
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Object getMock(Parameter parameter, ExtensionContext extensionContext) {
Class<?> mockType = parameter.getType();
Store mocks = extensionContext.getStore(Namespace.create(MockitoExtension.class, mockType));
String mockName = getMockName(parameter);
if (mockName != null) {
return mocks.getOrComputeIfAbsent(mockName, key -> mock(mockType, mockName));
}
else {
return mocks.getOrComputeIfAbsent(mockType.getCanonicalName(), key -> mock(mockType));
}
}
示例3: getMock
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Object getMock(Parameter parameter,
ExtensionContext extensionContext) {
Class<?> mockType = parameter.getType();
Store mocks = extensionContext
.getStore(Namespace.create(MockitoExtension.class, mockType));
String mockName = getMockName(parameter);
if (mockName != null) {
return mocks.getOrComputeIfAbsent(mockName,
key -> mock(mockType, mockName));
} else {
return mocks.getOrComputeIfAbsent(mockType.getCanonicalName(),
key -> mock(mockType));
}
}
示例4: getMock
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Object getMock(Parameter parameter, ExtensionContext extensionContext) {
Class<?> mockType = parameter.getType();
Store mocks = extensionContext.getStore(Namespace.create(MockitoExtension.class, mockType));
String mockName = getMockName(parameter);
if (mockName != null) {
return mocks.getOrComputeIfAbsent(mockName, key -> mock(mockType, mockName));
} else {
return mocks.getOrComputeIfAbsent(mockType.getCanonicalName(), key -> mock(mockType));
}
}
示例5: getMock
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Object getMock(Parameter parameter, ExtensionContext extensionContext) {
Class<?> mockType = parameter.getType();
Store mocks = extensionContext.getStore(Namespace.create(MockitoExtension.class, mockType));
String mockName = getMockName(parameter);
if (mockName != null) {
return mocks.getOrComputeIfAbsent(mockName, key -> mock(mockType, mockName));
}
return mocks.getOrComputeIfAbsent(mockType.getCanonicalName(), key -> mock(mockType));
}
示例6: prepare
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
@BeforeEach
public void prepare() {
MockitoAnnotations.initMocks(this);
when(extensionContext.getStore(Namespace.create(WatcherExtension.class, extensionContext)))
.thenReturn(store);
sut = new WatcherExtension(logger);
}
示例7: prepare
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
@BeforeEach
public void prepare() {
MockitoAnnotations.initMocks(this);
when(extensionContext.getStore(
Namespace.create(TemporaryFolderExtension.class, extensionContext)))
.thenReturn(store);
}
示例8: getMock
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Object getMock(Parameter parameter, ExtensionContext extensionContext) {
Class<?> mockType = parameter.getType();
Store mocks = extensionContext.getStore(Namespace.create(MockitoExtension.class, mockType));
String mockName = getMockName(parameter);
if (mockName != null) {
return mocks.getOrComputeIfAbsent(mockName, key -> mock(mockType, mockName));
}
else {
return mocks.getOrComputeIfAbsent(mockType.getCanonicalName(), key -> mock(mockType));
}
}
示例9: getMock
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Object getMock(Parameter parameter, ExtensionContext extensionContext) {
Class<?> mockType = parameter.getType();
Store mocks = extensionContext.getStore(Namespace.create(MockitoExtension.class, mockType));
String mockName = getMockName(parameter);
if (mockName != null) {
return mocks.getOrComputeIfAbsent(mockName, key -> mock(mockType, mockName));
} else {
return mocks.getOrComputeIfAbsent(mockType.getCanonicalName(), key -> mock(mockType));
}
}
示例10: getMock
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Object getMock(final Parameter parameter, final ExtensionContext extensionContext) {
final Class<?> mockType = parameter.getType();
final Store mocks = extensionContext.getStore(Namespace.create(MockitoExtension.class, mockType));
final String mockName = getMockName(parameter);
return (mockName != null)
? mocks.getOrComputeIfAbsent(mockName, key -> mock(mockType, mockName))
: mocks.getOrComputeIfAbsent(mockType.getCanonicalName(), key -> mock(mockType));
}
示例11: getStore
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Store getStore(ExtensionContext context) {
return context.getStore(Namespace.create(getClass(), context));
}
示例12: getStore
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private ExtensionContext.Store getStore(ExtensionContext context) {
return context.getStore(Namespace.create("de.aliceice.paper", getClass().getName()));
}
示例13: getStore
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Store getStore(ExtensionContext context) {
return context.getStore(Namespace.create(context.getRequiredTestMethod()));
}
示例14: localNamespace
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private Namespace localNamespace(ExtensionContext context) {
return Namespace.create(TempDirectoryExtension.class, context);
}
示例15: getMethodStore
import org.junit.jupiter.api.extension.ExtensionContext.Namespace; //导入依赖的package包/类
private static Store getMethodStore(ExtensionContext context) {
Optional<Method> m = context.getTestMethod();
if (m.isPresent()) return context.getStore(Namespace.create(DatagenUtils.class, m.get()));
return null;
}