~ubuntu-branches/ubuntu/utopic/monodevelop/utopic

« back to all changes in this revision

Viewing changes to external/guiunit/src/tests/Constraints/PropertyTests.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-10-10 14:50:04 UTC
  • mfrom: (10.3.4)
  • Revision ID: package-import@ubuntu.com-20131010145004-80l130sny21b17sb
Tags: 4.0.12+dfsg-1
* [5dcb6e1] Fix debian/watch for new source tarball name format
* [5c68cb5] Refresh list of files removed by get-orig-source to 
  reflect 4.0.12
* [96d60a0] Imported Upstream version 4.0.12+dfsg
* [b989752] Refresh debian/patches/no_appmenu to ensure it applies
* [2a4c351] Ensure every assembly in external/ is cleaned properly
* [92762f7] Add more excluded Mac-specific modulerefs
* [bc698ba] Add symlinks to NUnit assemblies (Closes: #714246)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ***********************************************************************
 
2
// Copyright (c) 2009 Charlie Poole
 
3
//
 
4
// Permission is hereby granted, free of charge, to any person obtaining
 
5
// a copy of this software and associated documentation files (the
 
6
// "Software"), to deal in the Software without restriction, including
 
7
// without limitation the rights to use, copy, modify, merge, publish,
 
8
// distribute, sublicense, and/or sell copies of the Software, and to
 
9
// permit persons to whom the Software is furnished to do so, subject to
 
10
// the following conditions:
 
11
// 
 
12
// The above copyright notice and this permission notice shall be
 
13
// included in all copies or substantial portions of the Software.
 
14
// 
 
15
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
16
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
17
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
18
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
19
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
20
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
21
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
22
// ***********************************************************************
 
23
 
 
24
// TODO: Remove NUNITLITE conditional code
 
25
using System;
 
26
using System.Collections;
 
27
using NUnit.Framework.Internal;
 
28
using NUnit.TestUtilities;
 
29
 
 
30
namespace NUnit.Framework.Constraints.Tests
 
31
{
 
32
    public class PropertyExistsTest
 
33
#if NUNITLITE
 
34
 : ConstraintTestBase
 
35
#else
 
36
        : ConstraintTestBaseWithExceptionTests
 
37
#endif
 
38
    {
 
39
        [SetUp]
 
40
        public void SetUp()
 
41
        {
 
42
            theConstraint = new PropertyExistsConstraint("Length");
 
43
            expectedDescription = "property Length";
 
44
            stringRepresentation = "<propertyexists Length>";
 
45
        }
 
46
 
 
47
        internal static object[] SuccessData = new object[] { new int[0], "hello", typeof(Array) };
 
48
 
 
49
        internal static object[] FailureData = new object[] { 
 
50
            new TestCaseData( 42, "<System.Int32>" ),
 
51
            new TestCaseData( new SimpleObjectCollection(), "<NUnit.TestUtilities.SimpleObjectCollection>" ),
 
52
            new TestCaseData( typeof(Int32), "<System.Int32>" ) };
 
53
#if !NUNITLITE
 
54
        internal static object[] InvalidData = new TestCaseData[] 
 
55
        { 
 
56
            new TestCaseData(null).Throws(typeof(ArgumentNullException))
 
57
        };
 
58
#endif
 
59
    }
 
60
 
 
61
    public class PropertyTest
 
62
#if NUNITLITE
 
63
        : ConstraintTestBase
 
64
#else
 
65
        : ConstraintTestBaseWithExceptionTests
 
66
#endif
 
67
    {
 
68
        [SetUp]
 
69
        public void SetUp()
 
70
        {
 
71
            theConstraint = new PropertyConstraint("Length", new EqualConstraint(5));
 
72
            expectedDescription = "property Length equal to 5";
 
73
            stringRepresentation = "<property Length <equal 5>>";
 
74
        }
 
75
 
 
76
        internal static object[] SuccessData = new object[] { new int[5], "hello" };
 
77
 
 
78
        internal static object[] FailureData = new object[] { 
 
79
            new TestCaseData( new int[3], "3" ),
 
80
            new TestCaseData( "goodbye", "7" ) };
 
81
#if !NUNITLITE
 
82
        internal static object[] InvalidData = new object[] 
 
83
        { 
 
84
            new TestCaseData(null).Throws(typeof(ArgumentNullException)),
 
85
            new TestCaseData(42).Throws(typeof(ArgumentException)), 
 
86
            new TestCaseData(new System.Collections.ArrayList()).Throws(typeof(ArgumentException))
 
87
        };
 
88
#endif
 
89
 
 
90
        [Test]
 
91
        public void PropertyEqualToValueWithTolerance()
 
92
        {
 
93
            Constraint c = new EqualConstraint(105m).Within(0.1m);
 
94
            TextMessageWriter w = new TextMessageWriter();
 
95
            c.WriteDescriptionTo(w);
 
96
            Assert.That(w.ToString(), Is.EqualTo("105m +/- 0.1m"));
 
97
 
 
98
            c = new PropertyConstraint("D", new EqualConstraint(105m).Within(0.1m));
 
99
            w = new TextMessageWriter();
 
100
            c.WriteDescriptionTo(w);
 
101
            Assert.That(w.ToString(), Is.EqualTo("property D equal to 105m +/- 0.1m"));
 
102
        }
 
103
    }
 
104
}