Remove excessive shortcut key matching in ToolStrip
[mono.git] / mcs / class / System.ComponentModel.Composition / Tests / ComponentModelUnitTest / System / ComponentModel / Composition / MetadataAttributeAttributeTests.cs
1 // -----------------------------------------------------------------------\r
2 // Copyright (c) Microsoft Corporation.  All rights reserved.\r
3 // -----------------------------------------------------------------------\r
4 using System;\r
5 using System.ComponentModel.Composition;\r
6 using Microsoft.VisualStudio.TestTools.UnitTesting;\r
7 \r
8 namespace System.ComponentModel.Composition\r
9 {\r
10     [TestClass]\r
11     public class MetadataAttributeAttributeTests\r
12     {\r
13         [TestMethod]\r
14         public void Constructor_ShouldNotThrow()\r
15         {\r
16             var attribute = new MetadataAttributeAttribute();\r
17 \r
18             Assert.IsNotNull(attribute);\r
19         }\r
20     }\r
21 }\r