Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FieldInfoIsLiteral.cs « FieldInfo « tests « System.Reflection.TypeExtensions « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8500c9dfb3e503ce0c2f34c7145b57116887b317 (plain)
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
66
67
68
69
70
71
72
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using Xunit;

namespace System.Reflection.Tests
{
    // System.Reflection.FieldInfo.IsLiteral
    public class FieldInfoIsLiteral
    {
        // Positive Test 1:the class is public and the field is public const
        [Fact]
        public void PosTest1()
        {
            Type tpA = typeof(TestClassPublic);
            FieldInfo fieldinfo = tpA.GetField("field1", BindingFlags.Public | BindingFlags.Static);
            Assert.True(fieldinfo.IsLiteral);
        }

        // Positive Test 2:the class is public and the field is public static
        [Fact]
        public void PosTest2()
        {
            Type tpA = typeof(TestClassPublic);
            FieldInfo fieldinfo = tpA.GetField("field2", BindingFlags.Public | BindingFlags.Static);
            Assert.False(fieldinfo.IsLiteral);
        }

        // Positive Test 3:the class is public and the field is protected internal const
        [Fact]
        public void PosTest3()
        {
            Type tpA = typeof(TestClassPublic);
            FieldInfo fieldinfo = tpA.GetField("field4", BindingFlags.NonPublic | BindingFlags.Static);
            Assert.True(fieldinfo.IsLiteral);
        }

        // Positive Test 4:the class is public and the field is protected internal
        [Fact]
        public void PosTest4()
        {
            Type tpA = typeof(TestClassPublic);
            FieldInfo fieldinfo = tpA.GetField("field3", BindingFlags.NonPublic | BindingFlags.Instance);
            Assert.False(fieldinfo.IsLiteral);
        }

        // Positive Test 5:the class is public and the field is private
        [Fact]
        public void PosTest5()
        {
            Type tpA = typeof(TestClassPublic);
            FieldInfo fieldinfo = tpA.GetField("_field5", BindingFlags.NonPublic | BindingFlags.Instance);
            Assert.False(fieldinfo.IsLiteral);
        }

        // this class will only ever be used for reflection so
        // build warnings about unused fields do not apply.
#pragma warning disable 0414
        public class TestClassPublic
        {
            public const string field1 = "Test";
            public static string field2 = "TestClassPublicField2";
            protected internal int field3 = new Random().Next(int.MinValue, int.MaxValue);
            protected internal const int field4 = 123;
            private string _field5 = "TestClassPublicPrivateField5";
        }
#pragma warning restore 0414
    }
}