blob: b1e14fb9eedfc74b46c2453831586f0ecb5e20b1 [file] [log] [blame]
/*
* 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.
*/
package org.apache.commons.functor.generator;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import org.apache.commons.functor.Predicate;
import org.apache.commons.functor.generator.util.IntegerRange;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
/**
* Tests the Generate While class.
* @version $Revision$ $Date$
*/
public class TestGenerateWhile
{
@Before
public void setUp() throws Exception {
wrappedGenerator = new IntegerRange(1, 10);
generateWhile = new GenerateWhile<Integer>(wrappedGenerator, isLessThanFive);
}
@After
public void tearDown() {
wrappedGenerator = null;
isLessThanFive = null;
generateWhile = null;
}
// Tests
// ------------------------------------------------------------------------
@Test(expected=NullPointerException.class)
public void testConstructorProhibitsNullPredicate() {
new GenerateWhile<Integer>(generateWhile, null);
}
@Test(expected=NullPointerException.class)
public void testConstructorProhibitsNullWrappedGenerator() {
new GenerateWhile<Integer>(null, isLessThanFive);
}
@Test(expected=NullPointerException.class)
public void testConstructorProhibitsNullPredicateOrNullWrappedGenerator() {
new GenerateWhile<Integer>(null, null);
}
@Test
public void testEquals() {
Generator<Integer> anotherGenerate = new GenerateWhile<Integer>(new IntegerRange(1, 10), isLessThanFive);
assertEquals(generateWhile, generateWhile);
assertEquals(generateWhile, anotherGenerate);
assertTrue(!generateWhile.equals((GenerateWhile<Integer>)null));
Generator<Integer> aGenerateWithADifferentPredicate = new GenerateWhile<Integer>(
new IntegerRange(1, 10), new Predicate<Integer>() {
public boolean test(Integer obj) {
return obj < FIVE;
}
});
assertTrue(!generateWhile.equals(aGenerateWithADifferentPredicate));
Generator<Integer> aGenerateWithADifferentWrapped = new GenerateWhile<Integer>(new IntegerRange(1,11), isLessThanFive);
assertTrue(!generateWhile.equals(aGenerateWithADifferentWrapped));
}
@Test
public void testHashcode() {
assertEquals(generateWhile.hashCode(), generateWhile.hashCode());
assertEquals(generateWhile.hashCode(), new GenerateWhile<Integer>(wrappedGenerator, isLessThanFive).hashCode());
}
// Attributes
// ------------------------------------------------------------------------
private static final Integer FIVE = new Integer(5);
private Generator<Integer> wrappedGenerator = null;
private Predicate<Integer> isLessThanFive = new Predicate<Integer>()
{
public boolean test( Integer obj ) {
return obj < FIVE;
}
};
private Generator<Integer> generateWhile = null;
}