blob: 20e27972961ba270b7cb34a193158ad925befb5a [file] [log] [blame]
package org.apache.maven.surefire.junit4;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.maven.surefire.api.booter.BaseProviderFactory;
import org.apache.maven.surefire.api.testset.TestRequest;
import org.junit.Test;
import org.junit.runner.Description;
import java.util.HashMap;
import static java.util.Arrays.asList;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.contains;
import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.isEmptyOrNullString;
import static org.hamcrest.Matchers.not;
import static org.hamcrest.Matchers.notNullValue;
import static org.junit.Assert.assertNotNull;
import static org.junit.runner.Description.createSuiteDescription;
/**
* @author Kristian Rosenvold
*/
public class JUnit4ProviderTest
{
@Test
public void testCreateProvider()
{
assertNotNull( getJUnit4Provider() );
}
private JUnit4Provider getJUnit4Provider()
{
BaseProviderFactory providerParameters = new BaseProviderFactory( true );
providerParameters.setProviderProperties( new HashMap<String, String>() );
providerParameters.setClassLoaders( getClass().getClassLoader() );
providerParameters.setTestRequest( new TestRequest( null, null, null ) );
return new JUnit4Provider( providerParameters );
}
@Test
public void testShouldCreateDescription()
{
class A
{
}
class B
{
}
Description d = JUnit4Provider.createTestsDescription( asList( A.class, B.class ) );
assertThat( d, is( notNullValue() ) );
assertThat( d.getDisplayName(), not( isEmptyOrNullString() ) );
assertThat( d.getDisplayName(), is( "null" ) );
assertThat( d.getChildren(), hasSize( 2 ) );
Description a = createSuiteDescription( A.class );
Description b = createSuiteDescription( B.class );
assertThat( d.getChildren(), contains( a, b ) );
}
}