1 package baseCode.math;
2
3 import junit.framework.TestCase;
4
5 /***
6 *
7 * <p>
8 * Copyright (c) 2004 Columbia University
9 *
10 * @author pavlidis
11 * @version $Id: TestCorrelationStats.java,v 1.2 2004/06/28 10:08:51 pavlidis
12 * Exp $
13 * @todo write tests.
14 */
15 public class TestCorrelationStats extends TestCase {
16
17
18
19
20 protected void setUp() throws Exception {
21 super.setUp();
22 }
23
24
25
26
27 protected void tearDown() throws Exception {
28 super.tearDown();
29 }
30
31 public void testPvalue() {
32 }
33
34 public void testCorrelAsByte() {
35 }
36
37 public void testFisherTransform() {
38 }
39
40 public void testPvalueAsByte() {
41 }
42
43 public void testByteToPvalue() {
44 }
45
46 public void testByteToCorrel() {
47 }
48
49 public void testCorrelationTstat() {
50 }
51
52 public void testCompare() {
53 }
54
55 public void testCorrelationForPvalue() {
56 }
57
58 }