protected override void PrepareExecution()
        {
            base.PrepareExecution();

            station = DualChannelStationFactory.generateStation();
            controller = ControllerFactory.generateControllerStation(TesterFactory.UserInterface);
        }
        protected override void PrepareExecution()
        {
            base.PrepareExecution();

            classicChannel = ClassicChannelFactory.generateP2PChannel();
            quantumChannel = QuantumChannelFactory.generateP2PChannel();
            stationA = DualChannelStationFactory.generateStation(classicChannel, quantumChannel);
            stationB = DualChannelStationFactory.generateStation(classicChannel, quantumChannel);

            controllerA = ControllerFactory.generateControllerStation(TesterFactory.UserInterface);
            controllerB = ControllerFactory.generateControllerStation(TesterFactory.UserInterface);
        }