338e3b7069763fbc85afc028b41dccc8d9edc09f
[mono.git] / mcs / class / System.Runtime.Remoting / Test / IpcChannelTest.cs
1 //
2 // MonoTests.Remoting.IpcChannelTests.cs
3 //
4 // Authors:
5 //      Robert Jordan (robertj@gmx.net)
6 //
7
8 #if NET_2_0
9
10 using System;
11 using System.Collections;
12 using System.Runtime.Remoting;
13 using System.Runtime.Remoting.Channels;
14 using System.Runtime.Remoting.Channels.Ipc;
15 using NUnit.Framework;
16
17 namespace MonoTests.Remoting
18 {
19         [TestFixture]
20         public class IpcChannelTest
21         {
22                 [Test]
23                 public void Bug81653 ()
24                 {
25                         IpcClientChannel c = new IpcClientChannel ();
26                         ChannelDataStore cd = new ChannelDataStore (new string[] { "foo" });
27                         string objectUri;
28                         c.CreateMessageSink (null, cd, out objectUri);
29                 }
30         }
31 }
32
33 #endif