BloomTests.Book.TranslationGroupManagerTests.Setup C# (CSharp) Method

Setup() private method

private Setup ( ) : void
return 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;
        }