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

ImportingConstructorAttributeTests.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: f222b06539450b7a17e7638ff12636bb90f5c7b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;

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

            Assert.IsNotNull(attribute);
        }
    }
}