Search in sources :

Example 1 with AbstractMethodComparator

use of uk.co.jemos.podam.common.AbstractMethodComparator in project podam by devopsfolks.

the class RandomDataProviderStrategyImplInitialisationUnitTest method creatingARandomDataProviderStrategyShouldCreateAMethodLightComparator.

@Test
@Title("Creating a Random Data Provider Strategy should create a Method light comparator")
public void creatingARandomDataProviderStrategyShouldCreateAMethodLightComparator() throws Exception {
    AbstractRandomDataProviderStrategy randomStrategy = (AbstractRandomDataProviderStrategy) podamFactorySteps.givenARandomDataProviderStrategy();
    AbstractMethodComparator comparator = randomStrategy.getMethodLightComparator();
    podamValidationSteps.theObjectShouldNotBeNull(comparator);
    randomStrategy.setMethodLightComparator(null);
    podamValidationSteps.theTwoObjectsShouldBeEqual(null, randomStrategy.getMethodLightComparator());
    randomStrategy.setMethodLightComparator(comparator);
    podamValidationSteps.theTwoObjectsShouldBeEqual(comparator, randomStrategy.getMethodLightComparator());
}
Also used : AbstractRandomDataProviderStrategy(uk.co.jemos.podam.api.AbstractRandomDataProviderStrategy) AbstractMethodComparator(uk.co.jemos.podam.common.AbstractMethodComparator) Test(org.junit.Test) Title(net.thucydides.core.annotations.Title)

Example 2 with AbstractMethodComparator

use of uk.co.jemos.podam.common.AbstractMethodComparator in project podam by devopsfolks.

the class RandomDataProviderStrategyImplInitialisationUnitTest method creatingARandomDataProviderStrategyShouldCreateAMethodHeavyComparator.

@Test
@Title("Creating a Random Data Provider Strategy should create a Method heavy comparator")
public void creatingARandomDataProviderStrategyShouldCreateAMethodHeavyComparator() throws Exception {
    AbstractRandomDataProviderStrategy randomStrategy = (AbstractRandomDataProviderStrategy) podamFactorySteps.givenARandomDataProviderStrategy();
    AbstractMethodComparator comparator = randomStrategy.getMethodHeavyComparator();
    podamValidationSteps.theObjectShouldNotBeNull(comparator);
    randomStrategy.setMethodHeavyComparator(null);
    podamValidationSteps.theTwoObjectsShouldBeEqual(null, randomStrategy.getMethodHeavyComparator());
    randomStrategy.setMethodHeavyComparator(comparator);
    podamValidationSteps.theTwoObjectsShouldBeEqual(comparator, randomStrategy.getMethodHeavyComparator());
}
Also used : AbstractRandomDataProviderStrategy(uk.co.jemos.podam.api.AbstractRandomDataProviderStrategy) AbstractMethodComparator(uk.co.jemos.podam.common.AbstractMethodComparator) Test(org.junit.Test) Title(net.thucydides.core.annotations.Title)

Aggregations

Title (net.thucydides.core.annotations.Title)2 Test (org.junit.Test)2 AbstractRandomDataProviderStrategy (uk.co.jemos.podam.api.AbstractRandomDataProviderStrategy)2 AbstractMethodComparator (uk.co.jemos.podam.common.AbstractMethodComparator)2