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

Assembly_EqualsTests.cs « Assembly « tests « System.Reflection « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67ff47e6755c9ac91f37e53c62a4a310ebc49a66 (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
// 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;
using System;
using System.Reflection;
using System.Collections.Generic;

namespace System.Reflection.Tests
{
    public class EqualsTests
    {
        [Fact]
        //Try to Load System.Runtime and Verify Equals Method returns True
        public void EqualsTest1()
        {
            var assembly1 = Assembly.Load(new AssemblyName(typeof(int).GetTypeInfo().Assembly.FullName));
            var assembly2 = Assembly.Load(new AssemblyName(typeof(int).GetTypeInfo().Assembly.FullName));

            Assert.Equal(assembly1, assembly2);
        }

        [Fact]
        //Try to Load assembly other than System.Runtime and Verify Equals Method returns True
        public void EqualsTest2()
        {
            var assembly1 = Assembly.Load(new AssemblyName(typeof(List<int>).GetTypeInfo().Assembly.FullName));
            var assembly2 = Assembly.Load(new AssemblyName(typeof(List<int>).GetTypeInfo().Assembly.FullName));

            Assert.Equal(assembly1, assembly2);
        }

        [Fact]
        //Try to Load System.Runtime and currently Executing Assembly and Verify that Equals method returns False
        public void EqualsTest3()
        {
            var assembly1 = Assembly.Load(new AssemblyName(typeof(List<int>).GetTypeInfo().Assembly.FullName));
            var assembly2 = typeof(EqualsTests).GetTypeInfo().Assembly;

            Assert.NotEqual(assembly1, assembly2);
        }
    }
}