Package com.jgaap.eventDrivers

Source Code of com.jgaap.eventDrivers.ReactionTimeEventDriverTest

/*
* JGAAP -- a graphical program for stylometric authorship attribution
* Copyright (C) 2009,2011 by Patrick Juola
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
/**
*
*/
package com.jgaap.eventDrivers;

import static org.junit.Assert.*;

import java.util.Vector;

import org.junit.Test;

import com.jgaap.generics.EventDriver;
import com.jgaap.generics.EventGenerationException;
import com.jgaap.util.Event;
import com.jgaap.util.EventSet;
import com.jgaap.util.NumericEventSet;

/**
* @author Patrick Juola
*
*/
public class ReactionTimeEventDriverTest {

  /**
   * Test method for {@link com.jgaap.eventDrivers.ReactionTimeEventDriver#createEventSet(com.jgaap.generics.Document)}.
   * @throws EventGenerationException
   */
  @Test
  public void testCreateEventSetDocumentSet() throws EventGenerationException {
    /* test case 1 -- no punctuation */
    String text = (
"a aah Aaron aback abacus abandon abandoned zones zoning zoo " +
"zoologist zoology zoom zooming zooms zucchini Zurich");

    EventDriver eventDriver = new ReactionTimeEventDriver();
    EventSet sampleEventSet = eventDriver.createEventSet(text.toCharArray());
    EventSet expectedEventSet = new NumericEventSet();
    Vector<Event> tmp = new Vector<Event>();

    tmp.add(new Event("798.92", eventDriver));
    tmp.add(new Event("816.43", eventDriver));
    tmp.add(new Event("736.06", eventDriver));
    tmp.add(new Event("796.27", eventDriver));
    tmp.add(new Event("964.40", eventDriver));
    tmp.add(new Event("695.72", eventDriver));
    tmp.add(new Event("860.77", eventDriver));
    tmp.add(new Event("605.23", eventDriver));
    tmp.add(new Event("726.43", eventDriver));
    tmp.add(new Event("572.56", eventDriver));
    tmp.add(new Event("714.09", eventDriver));
    tmp.add(new Event("685.28", eventDriver));
    tmp.add(new Event("549.76", eventDriver));
    tmp.add(new Event("709.69", eventDriver));
    tmp.add(new Event("666.93", eventDriver));
    tmp.add(new Event("848.68", eventDriver));
    tmp.add(new Event("763.00", eventDriver));

    expectedEventSet.addEvents(tmp);

// System.out.println("Expected is " + expectedEventSet.toString());
// System.out.println("Actual is " + sampleEventSet.toString());
    assertTrue(expectedEventSet.equals(sampleEventSet));
  }

}
TOP

Related Classes of com.jgaap.eventDrivers.ReactionTimeEventDriverTest

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.