Examples of addOccurrence()


Examples of br.com.visualmidia.business.Student.addOccurrence()

    @Override
    protected void execute(PrevalentSystem system) throws BusinessException {
        Student student = (Student) system.getPeople().get(studentId).getPersonType("student");
        if(student != null)
          student.addOccurrence(new Occurrence(system.getPeople().get(attendenceId), date, occurrenceDescription));
    }
}
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

     * testClear
     */
    public void testClear() {
        PearsonCorrelationMapping p = new PearsonCorrelationMapping();
        for (int i = 0; i < num_samples; i++) {
            p.addOccurrence(i, i);
        } // FOR
        p.clear();
        assertEquals(0, p.size());
        assertNull(p.calculate());
    }
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

    /**
     * testSingleSample
     */
    public void testSingleSample() {
        PearsonCorrelationMapping p = new PearsonCorrelationMapping();
        p.addOccurrence(1, 1);
        Double result = p.calculate();
        assertNotNull(result);
        assertEquals(1.0d, roundToDecimals(result, 1));
    }
   
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

     * testIntegers
     */
    public void testIntegers() {
        PearsonCorrelationMapping p = new PearsonCorrelationMapping();
        for (int i = 0; i < num_samples; i++) {
            p.addOccurrence(Integer.MAX_VALUE, Integer.MAX_VALUE);
        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
       
        p.clear();
        for (int i = 0; i < num_samples; i++) {
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
       
        p.clear();
        for (int i = 0; i < num_samples; i++) {
            p.addOccurrence(Integer.MIN_VALUE, Integer.MIN_VALUE);
        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
    }

    /**
 
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

     * testLongs
     */
    public void testLongs() {
        PearsonCorrelationMapping p = new PearsonCorrelationMapping();
        for (int i = 0; i < num_samples; i++) {
            p.addOccurrence(Long.MAX_VALUE, Long.MAX_VALUE);
        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
       
        p.clear();
        for (int i = 0; i < num_samples; i++) {
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
       
        p.clear();
        for (int i = 0; i < num_samples; i++) {
            p.addOccurrence(Long.MIN_VALUE, Long.MIN_VALUE);
        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
    }
   
    /**
 
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

     * testDoubles
     */
    public void testDoubles() {
        PearsonCorrelationMapping p = new PearsonCorrelationMapping();
        for (int i = 0; i < num_samples; i++) {
            p.addOccurrence(Double.MAX_VALUE, Double.MAX_VALUE);
        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
       
        p.clear();
        for (int i = 0; i < num_samples; i++) {
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
       
        p.clear();
        for (int i = 0; i < num_samples; i++) {
            p.addOccurrence(Double.MIN_VALUE, Double.MIN_VALUE);
        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
    }
   
    /**
 
View Full Code Here

Examples of edu.brown.mappings.PearsonCorrelationMapping.addOccurrence()

     * testAbsolutePositive
     */
    public void testAbsolutePositive() {
        PearsonCorrelationMapping p = new PearsonCorrelationMapping();
        for (int i = 0; i < num_samples; i++) {
            p.addOccurrence(i, i);
        }
        assertEquals(1.0d, roundToDecimals(p.calculate(), 1));
    }
   
    /**
 
View Full Code Here
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.