summaryrefslogtreecommitdiff
path: root/sources/scala/testing/UnitTest.scala
blob: 2f8878b2ebf4fa5f0028ddb6e59e3d97097677d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2004, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
** $Id$
\*                                                                      */

package scala.testing;

/** some simple methods to support unit testing with assertions
**  to contain more JUnit style assertions which use Scala's features.
*/
object UnitTest {

  class Report( report_ok:()=>Unit, report_fail:(String,String)=>Unit ) {
    def ok:Unit = report_ok();
    def fail( actual:String, expected:String ):Unit =
      report_fail( actual, expected );
  }

  var report = new Report(
    { () => Console.println("passed ok") },
    { (actual:String, expected:String) =>
        Console.print("failed! we got");
         Console.print( "\""+ actual +"\"" );
         Console.println(" but expected \"" + expected + "\"") });

  def setReporter( r:Report ) = {
    this.report = r;
  }

  def assertSameElements[a]( actual:Seq[a] , expected: Seq[a] ):Unit =
    if( actual.sameElements( expected ) )
        report.ok
    else
	report.fail( actual.toString(), expected.toString() );

  def assertEquals[a]( actual: a, expected: a ):Unit =
    if( actual == expected )
        report.ok
    else
	report.fail( actual.toString(), expected.toString() );

  def assertTrue( actual: Boolean ):Unit = assertEquals(actual, true);
  def assertFalse( actual: Boolean ):Unit = assertEquals(actual, false);


  def assertNotEquals[a]( actual: a, expected: a ):Unit =
    if( actual != expected )
        report.ok
    else
	report.fail( actual.toString(), "x != "+expected.toString() );

  //def test[a]( def doit: a, expected: a ):Unit = assertEquals( doit, expected );

} // unitTest