2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Runtime.Remoting / Test / IpcChannelTest.cs
blob338e3b7069763fbc85afc028b41dccc8d9edc09f
1 //
2 // MonoTests.Remoting.IpcChannelTests.cs
3 //
4 // Authors:
5 // Robert Jordan (robertj@gmx.net)
6 //
8 #if NET_2_0
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;
17 namespace MonoTests.Remoting
19 [TestFixture]
20 public class IpcChannelTest
22 [Test]
23 public void Bug81653 ()
25 IpcClientChannel c = new IpcClientChannel ();
26 ChannelDataStore cd = new ChannelDataStore (new string[] { "foo" });
27 string objectUri;
28 c.CreateMessageSink (null, cd, out objectUri);
33 #endif