public void SetUp()
        {
            log4net.Config.BasicConfigurator.Configure();

            serverConnection = new LocalConnection();
            clientConnection = new LocalConnection();
            LocalProtocol.Connect(serverConnection, clientConnection);
        }
        public void SetUp()
        {
            log4net.Config.BasicConfigurator.Configure();

            serverConnection = new LocalConnection();
            clientConnection = new LocalConnection();
            LocalProtocol.Connect(serverConnection, clientConnection);

            serverContext = new StringTextContext();
            clientContext = new StringTextContext();

            server = new DifferentialSynchronizationStrategy(0, serverContext, serverConnection);
            client = new DifferentialSynchronizationStrategy(1, clientContext, clientConnection);
        }