Added missing file
[pithos-ms-client] / trunk / Pithos.ShellExtensions.Test / FileContextMenuTest.cs
1 using System;
2 using System.ComponentModel.Composition.Hosting;
3 using System.Reflection;
4 using System.Runtime.InteropServices.ComTypes;
5 using NUnit.Framework;
6 using Pithos.ShellExtensions.Menus;
7 using System.Runtime.InteropServices;
8
9 namespace Pithos.ShellExtensions.Test
10 {
11     [TestFixture]
12     public class FileContextMenuTest
13     {
14         [SetUp]
15         public void Setup()
16         {
17         }
18
19         [Test]
20         public void TestCreation()
21         {
22             
23             var ctxMenu = new FileContextMenu();
24             ctxMenu.Context.Settings=new TestPithosSettings();
25
26         }
27     }
28 }