Ejemplo n.º 1
0
 public void Setup()
 {
     server = new FixedLenServer <long, long>(TestContext.CurrentContext.TestDirectory + "/FixedLenBinaryTests", (a, b) => a + b);
     client = new FixedLenClient <long, long>();
 }
Ejemplo n.º 2
0
 public void Setup()
 {
     server = TestUtils.CreateFixedLenServer(TestContext.CurrentContext.TestDirectory + "/FixedLenBinaryTests", (a, b) => a + b, disablePubSub: true);
     server.Start();
     client = new FixedLenClient <long, long>();
 }