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

MetadataAttributeAttributeTests.cs « Composition « ComponentModel « System « ComponentModelUnitTest « Tests « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cde9ac78bbd9a59628beab6c605b9c971e25b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;
using System.ComponentModel.Composition;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace System.ComponentModel.Composition
{
    [TestClass]
    public class MetadataAttributeAttributeTests
    {
        [TestMethod]
        public void Constructor_ShouldNotThrow()
        {
            var attribute = new MetadataAttributeAttribute();

            Assert.IsNotNull(attribute);
        }
    }
}