Ejemplo n.º 1
0
        public override void PublishesSolutionSynced()
        {
            UnitySolutionSyncTestUtilities.InvokeStaticSyncMethodFor <SolutionSyncUnitySubscriber>(
                UnitySyncMethodName.OnGeneratedCSProjectFiles);

            this.publisher.Received().PublishSolutionSynced();
        }
Ejemplo n.º 2
0
        public override void PublishesCsprojGenerated()
        {
            UnitySolutionSyncTestUtilities.InvokeStaticSyncMethodFor <SolutionSyncUnitySubscriber>(
                UnitySyncMethodName.OnGeneratedCSProject,
                this.testArgs.CsprojPath,
                this.testArgs.CsprojContent);

            this.publisher.Received().PublishCsprojGenerated(this.testArgs.CsprojPath, this.testArgs.CsprojContent);
        }
Ejemplo n.º 3
0
        public override void PublishesSlnGenerated()
        {
            UnitySolutionSyncTestUtilities.InvokeStaticSyncMethodFor <SolutionSyncUnitySubscriber>(
                UnitySyncMethodName.OnGeneratedSlnSolution,
                this.testArgs.SlnPath,
                this.testArgs.SlnContent);

            this.publisher.Received().PublishSlnGenerated(this.testArgs.SlnPath, this.testArgs.SlnContent);
        }