All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tngtech.jgiven.tests.PendingDataProviderTests Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.tngtech.jgiven.tests;

import com.tngtech.java.junit.dataprovider.DataProvider;
import com.tngtech.java.junit.dataprovider.DataProviderRunner;
import com.tngtech.jgiven.annotation.Pending;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(DataProviderRunner.class)
public class PendingDataProviderTests extends ScenarioTestForTesting {

    @Test
    @Pending
    @DataProvider({"1", "2"})
    public void pending_scenario(int i) {
        given().nothing();
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy