Package de.jungblut.partition

Source Code of de.jungblut.partition.BlockPartitionerTest

package de.jungblut.partition;

import static org.junit.Assert.assertEquals;

import java.util.Iterator;
import java.util.Set;
import java.util.TreeSet;

import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

import de.jungblut.partition.Boundaries.Range;

@RunWith(JUnit4.class)
public class BlockPartitionerTest {

  @Rule
  public ExpectedException exception = ExpectedException.none();

  @Test
  public void testPartitioner() {
    Boundaries partition = new BlockPartitioner().partition(2, 10);
    Set<Range> boundaries = new TreeSet<>(partition.getBoundaries());
    assertEquals(2, boundaries.size());
    Iterator<Range> iterator = boundaries.iterator();

    Range next = iterator.next();
    assertEquals(0, next.getStart());
    assertEquals(4, next.getEnd());
    next = iterator.next();
    assertEquals(5, next.getStart());
    assertEquals(9, next.getEnd());
  }

  @Test
  public void testPartitionerException() throws Exception {
    exception.expect(IllegalArgumentException.class);
    new BlockPartitioner().partition(0, 10);
  }
}
TOP

Related Classes of de.jungblut.partition.BlockPartitionerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.