Merge remote-tracking branch 'local/msvc-updates' into msvc-updates
[mono.git] / mcs / class / corlib / Test / System.Runtime.Versioning / ResourceConsumptionAttributeTest.cs
1 //
2 // ResourceConsumptionAttributeTest.cs - Unit tests for 
3 //      System.Runtime.Versioning.ResourceConsumptionAttribute
4 //
5 // Author:
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if NET_2_0
31
32 using System;
33 using System.Runtime.Versioning;
34
35 using NUnit.Framework;
36
37 namespace MonoTests.System.Runtime.Versioning {
38
39         [TestFixture]
40         public class ResourceConsumptionAttributeTest {
41
42                 [Test]
43                 public void Constructor1 ()
44                 {
45                         ResourceConsumptionAttribute rca = null;
46                         Array values = Enum.GetValues (typeof (ResourceScope));
47                         foreach (ResourceScope resource in values) {
48                                 rca = new ResourceConsumptionAttribute (resource);
49                                 string id = String.Format ("[{0}]", resource);
50                                 Assert.AreEqual (resource, rca.ResourceScope, "ResourceScope-" + id);
51                                 Assert.AreEqual (resource, rca.ConsumptionScope, "ConsumptionScope-" + id);
52                         }
53                 }
54
55                 [Test]
56                 public void Constructor2 ()
57                 {
58                         ResourceConsumptionAttribute rca = null;
59                         Array values = Enum.GetValues (typeof (ResourceScope));
60                         foreach (ResourceScope resource in values) {
61                                 foreach (ResourceScope consumption in values) {
62                                         rca = new ResourceConsumptionAttribute (resource, consumption);
63                                         string id = String.Format ("[{0}-{1}]", resource, consumption);
64                                         Assert.AreEqual (resource, rca.ResourceScope, "ResourceScope-" + id);
65                                         Assert.AreEqual (consumption, rca.ConsumptionScope, "ConsumptionScope-" + id);
66                                 }
67                         }
68                 }
69
70                 [Test]
71                 public void InvalidResourceScope1 ()
72                 {
73                         ResourceScope bad = (ResourceScope) Int32.MinValue;
74                         ResourceConsumptionAttribute rca = new ResourceConsumptionAttribute (bad);
75                         Assert.AreEqual (bad, rca.ResourceScope, "ResourceScope");
76                         Assert.AreEqual (bad, rca.ConsumptionScope, "ConsumptionScope");
77                 }
78
79                 [Test]
80                 public void InvalidResourceScope2 ()
81                 {
82                         ResourceScope bad = (ResourceScope) Int32.MinValue;
83                         ResourceConsumptionAttribute rca = new ResourceConsumptionAttribute (ResourceScope.None, bad);
84                         Assert.AreEqual (ResourceScope.None, rca.ResourceScope, "ResourceScope");
85                         Assert.AreEqual (bad, rca.ConsumptionScope, "ConsumptionScope");
86                 }
87         }
88 }
89
90 #endif