org.jboss.arquillian.test.spi.event.suite.Before.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(3.4k)|赞(0)|评价(0)|浏览(94)

本文整理了Java中org.jboss.arquillian.test.spi.event.suite.Before.<init>()方法的一些代码示例,展示了Before.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Before.<init>()方法的具体详情如下:
包路径:org.jboss.arquillian.test.spi.event.suite.Before
类名称:Before
方法名:<init>

Before.<init>介绍

暂无

代码示例

代码示例来源:origin: arquillian/arquillian-core

public void before(Object testInstance, Method testMethod, LifecycleMethodExecutor executor) throws Exception {
  Validate.notNull(testInstance, "TestInstance must be specified");
  Validate.notNull(testMethod, "TestMethod must be specified");
  ExecutionDecision executionDecision = resolveExecutionDecision(manager, testMethod);
  if (executionDecision.getDecision() == Decision.DONT_EXECUTE) {
    return;
  }
  manager.fire(new Before(testInstance, testMethod, executor));
}

代码示例来源:origin: arquillian/arquillian-core

@Test
  public void shouldCallAllEnrichers() throws Exception {
    Mockito.when(serviceLoader.all(TestEnricher.class)).thenReturn(Arrays.asList(enricher, enricher));
    bind(SuiteScoped.class, ServiceLoader.class, serviceLoader);

    fire(new Before(this, getClass().getMethod("shouldCallAllEnrichers")));

    Mockito.verify(enricher, Mockito.times(2)).enrich(this);

    assertEventFired(BeforeEnrichment.class, 1);
    assertEventFired(AfterEnrichment.class, 1);
  }
}

代码示例来源:origin: org.jboss.arquillian.test/arquillian-test-impl-base

@Test
  public void shouldCallAllEnrichers() throws Exception {
    Mockito.when(serviceLoader.all(TestEnricher.class)).thenReturn(Arrays.asList(enricher, enricher));
    bind(SuiteScoped.class, ServiceLoader.class, serviceLoader);

    fire(new Before(this, getClass().getMethod("shouldCallAllEnrichers")));

    Mockito.verify(enricher, Mockito.times(2)).enrich(this);

    assertEventFired(BeforeEnrichment.class, 1);
    assertEventFired(AfterEnrichment.class, 1);
  }
}

代码示例来源:origin: org.jboss.arquillian.extension/arquillian-warp-impl

private void executeTest(Object inspection, Method method, List<Annotation> qualifiers) {
  before.fire(new Before(inspection, method));
  test.fire(new Test(new LifecycleMethodExecutor(inspection, method, qualifiers)));
  after.fire(new After(inspection, method));
}

代码示例来源:origin: org.jboss.arquillian.container/arquillian-container-test-impl-base

@Test
@Ignore
public void shouldEnrichTestInstance() throws Exception {
  fire(new org.jboss.arquillian.test.spi.event.suite.Before(testClass(), testMethod()));
  //assertEventFired(Enrich, count)
}

代码示例来源:origin: arquillian/arquillian-core

@Test
public void shouldInvokeBeforeInContainerDeploymentContext() throws Exception {
  fire(new org.jboss.arquillian.test.spi.event.suite.Before(this, testMethod()));
  assertEventFiredInContext(org.jboss.arquillian.test.spi.event.suite.Before.class, ContainerContext.class);
  assertEventFiredInContext(org.jboss.arquillian.test.spi.event.suite.Before.class, DeploymentContext.class);
}

代码示例来源:origin: arquillian/arquillian-core

@Test
@Ignore
public void shouldEnrichTestInstance() throws Exception {
  fire(new org.jboss.arquillian.test.spi.event.suite.Before(testClass(), testMethod()));
  //assertEventFired(Enrich, count)
}

代码示例来源:origin: org.jboss.arquillian.container/arquillian-container-test-impl-base

@Test
public void shouldInvokeBeforeInContainerDeploymentContext() throws Exception {
  fire(new org.jboss.arquillian.test.spi.event.suite.Before(this, testMethod()));
  assertEventFiredInContext(org.jboss.arquillian.test.spi.event.suite.Before.class, ContainerContext.class);
  assertEventFiredInContext(org.jboss.arquillian.test.spi.event.suite.Before.class, DeploymentContext.class);
}

相关文章

微信公众号

最新文章

更多