Merge pull request #684 from jack-pappas/patch-7
[mono.git] / mcs / class / System.Core / Test / System.Linq.Expressions / ExpressionTest_PropertyOrField.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 //
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 //
19 // Authors:
20 //              Federico Di Gregorio <fog@initd.org>
21
22 using System;
23 using System.Reflection;
24 using System.Linq;
25 using System.Linq.Expressions;
26 using NUnit.Framework;
27
28 namespace MonoTests.System.Linq.Expressions
29 {
30         [TestFixture]
31         public class ExpressionTest_PropertyOrField
32         {
33                 [Test]
34                 [ExpectedException (typeof (ArgumentNullException))]
35                 public void Arg1Null ()
36                 {
37                         Expression.PropertyOrField (null, "NoPropertyOrField");
38                 }
39
40                 [Test]
41                 [ExpectedException (typeof (ArgumentNullException))]
42                 public void Arg2Null ()
43                 {
44                         Expression.PropertyOrField (Expression.Constant (new MemberClass()), null);
45                 }
46
47                 [Test]
48                 [ExpectedException (typeof (ArgumentException))]
49                 public void NoPropertyOrField ()
50                 {
51                         Expression.PropertyOrField (Expression.Constant (new MemberClass()), "NoPropertyOrField");
52                 }
53
54                 [Test]
55                 public void InstanceProperty ()
56                 {
57                         MemberExpression expr = Expression.PropertyOrField (Expression.Constant (new MemberClass()), "TestProperty1");
58                         Assert.AreEqual (ExpressionType.MemberAccess, expr.NodeType, "PropertyOrField#01");
59                         Assert.AreEqual (typeof (int), expr.Type, "PropertyOrField#02");
60                         Assert.AreEqual ("value(MonoTests.System.Linq.Expressions.MemberClass).TestProperty1", expr.ToString(), "PropertyOrField#04");
61                 }
62         }
63 }