BloomTests.Book.TranslationGroupManagerTests.Setup C# (CSharp) 메소드

Setup() 개인적인 메소드

private Setup ( ) : void
리턴 void
        public void Setup()
        {
            _collectionSettings = new Moq.Mock<CollectionSettings>();
            _collectionSettings.SetupGet(x => x.IsSourceCollection).Returns(false);
            _collectionSettings.SetupGet(x => x.Language1Iso639Code).Returns("xyz");
            _collectionSettings.SetupGet(x => x.Language2Iso639Code).Returns("fr");
            _collectionSettings.SetupGet(x => x.Language3Iso639Code).Returns("es");
            _collectionSettings.SetupGet(x => x.XMatterPackName).Returns("Factory");
            ErrorReport.IsOkToInteractWithUser = false;
        }