File: JSharpTest.jsl

package info (click to toggle)
nunit 2.4.7%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,672 kB
  • ctags: 9,598
  • sloc: cs: 54,034; cpp: 553; xml: 101; sh: 97; makefile: 50; ansic: 8
file content (65 lines) | stat: -rw-r--r-- 1,819 bytes parent folder | download | duplicates (3)
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
59
60
61
62
63
64
65
// ****************************************************************
// This is free software licensed under the NUnit license. You
// may obtain a copy of the license as well as information regarding
// copyright ownership at http://nunit.org/?p=license&r=2.4.
// ****************************************************************

package NUnit.Samples;

import System.*;
import NUnit.Framework.Assert;

/** @attribute NUnit.Framework.TestFixture() */
public class SimpleJSharpTest
{
	protected int fValue1;
	protected int fValue2;

	/** @attribute NUnit.Framework.SetUp() */
	public void Init()
	{
		fValue1 = 2;
		fValue2 = 3;
	}

	/** @attribute NUnit.Framework.Test() */
	public void Add() 
	{
		int result= fValue1 + fValue2;
		Assert.AreEqual(6,result, "Expected Failure");
	}

	/** @attribute NUnit.Framework.Test() */
	public void DivideByZero() 
	{
		int zero= 0;
		int result = 8/zero;
		KeepCompilerFromWarning(result); // never executed, here to avoid compiler warning that result is unused.
	}

	/** @attribute NUnit.Framework.Test() */
	public void Equals() 
	{
		Assert.AreEqual(12, 12, "Integer");
		Assert.AreEqual(new Long(12), new Long(13), "Long");
		Assert.AreEqual('a', 'a', "Char");
		Assert.AreEqual(new Integer(12), new Integer(12), "Integer Object Cast");
            
		Assert.AreEqual(12, 13, "Expected Failure (Integer)");
		Assert.AreEqual(12.0, 11.99, 0.0, "Expected Failure (Double).");
	}

	/** @attribute NUnit.Framework.Test() */
	/** @attribute NUnit.Framework.Ignore("ignored test") */
	public void IgnoredTest()
	{
		throw new InvalidCastException();
	}

	// A useless function, designed to avoid a compiler warning in the the DivideByZero test.
	private int KeepCompilerFromWarning(int dummy)
	{
		return dummy;
	}

}