public ShowBusyIndicationTest()
        {
            this.requestId = Guid.NewGuid();
            this.message   = "Any message";

            this.startBusyIndication = new Mock <IStartBusyIndication>();
            this.testee = new ShowBusyIndication(this.startBusyIndication.Object, this.requestId, this.message);
        }
        public ShowBusyIndicationTest()
        {
            this.requestId = Guid.NewGuid();
            this.message = "Any message";

            this.startBusyIndication = new Mock<IStartBusyIndication>();
            this.testee = new ShowBusyIndication(this.startBusyIndication.Object, this.requestId, this.message);
        }