public static Topic GetTestTopic(this PersistenceTest test) { return(new Topic { SystemName = "SystemName 1", IncludeInSitemap = true, IncludeInTopMenu = true, IncludeInFooterColumn1 = true, IncludeInFooterColumn2 = true, IncludeInFooterColumn3 = true, DisplayOrder = 1, AccessibleWhenStoreClosed = true, IsPasswordProtected = true, Password = "******", Title = "Title 1", Body = "Body 1", Published = true, TopicTemplateId = 1, MetaKeywords = "Meta keywords", MetaDescription = "Meta description", MetaTitle = "Meta title", SubjectToAcl = true, LimitedToStores = true }); }
public static ProductTag GetTestProductTag(this PersistenceTest test) { return(new ProductTag { Name = "Tag name 1", }); }
public static Category GetTestCategory(this PersistenceTest test) { return(new Category { Name = "Books", Description = "Description 1", CategoryTemplateId = 1, MetaKeywords = "Meta keywords", MetaDescription = "Meta description", MetaTitle = "Meta title", ParentCategoryId = 2, PictureId = 3, PageSize = 4, AllowCustomersToSelectPageSize = true, PageSizeOptions = "4, 2, 8, 12", ShowOnHomePage = false, IncludeInTopMenu = true, Published = true, SubjectToAcl = true, LimitedToStores = true, Deleted = false, DisplayOrder = 5, CreatedOnUtc = new DateTime(2010, 01, 01), UpdatedOnUtc = new DateTime(2010, 01, 02), }); }
public static Product GetTestProduct(this PersistenceTest test) { return(new Product { ProductType = ProductType.GroupedProduct, ParentGroupedProductId = 2, VisibleIndividually = true, Name = "Name 1", ShortDescription = "ShortDescription 1", FullDescription = "FullDescription 1", AdminComment = "AdminComment 1", ProductTemplateId = 2, ShowOnHomePage = false, MetaKeywords = "Meta keywords", MetaDescription = "Meta description", MetaTitle = "Meta title", AllowCustomerReviews = true, ApprovedRatingSum = 2, NotApprovedRatingSum = 3, ApprovedTotalReviews = 4, NotApprovedTotalReviews = 5, SubjectToAcl = true, LimitedToStores = true, Sku = "sku 1", MarkAsNew = true, MarkAsNewStartDateTimeUtc = new DateTime(2010, 01, 07), MarkAsNewEndDateTimeUtc = new DateTime(2010, 01, 08), DisplayOrder = 30, Published = true, Deleted = false, CreatedOnUtc = new DateTime(2010, 01, 01), UpdatedOnUtc = new DateTime(2010, 01, 02), }); }
public static ProductPicture GetTestProductPicture(this PersistenceTest test) { return(new ProductPicture { DisplayOrder = 1, Picture = test.GetTestPicture() }); }
public static ForumSubscription GetTestForumSubscription(this PersistenceTest test) { return(new ForumSubscription { CreatedOnUtc = new DateTime(2010, 01, 01), SubscriptionGuid = new Guid("11111111-2222-3333-4444-555555555555") }); }
public static LocaleStringResource GetTestLocaleStringResource(this PersistenceTest test) { return(new LocaleStringResource { ResourceName = "ResourceName1", ResourceValue = "ResourceValue2" }); }
public static PollVotingRecord GetTestPollVotingRecord(this PersistenceTest test) { return(new PollVotingRecord { Customer = test.GetTestCustomer(), CreatedOnUtc = DateTime.UtcNow }); }
public static AclRecord GetTestAclRecord(this PersistenceTest test) { return(new AclRecord { EntityId = 1, EntityName = "EntityName 1" }); }
public static StoreMapping GetTestStoreMapping(this PersistenceTest test) { return(new StoreMapping { EntityId = 1, EntityName = "EntityName 1" }); }
public static ProductCategory GetTestProductCategory(this PersistenceTest test) { return(new ProductCategory { IsFeaturedProduct = true, DisplayOrder = 1 }); }
public static StateProvince GetTestStateProvince(this PersistenceTest test) { return(new StateProvince { Name = "California", Abbreviation = "CA", DisplayOrder = 1 }); }
public static CustomerAttributeValue GetTestCustomerAttributeValue(this PersistenceTest test) { return(new CustomerAttributeValue { Name = "Name 2", IsPreSelected = true, DisplayOrder = 1, }); }
public static ActivityLogType GetTestActivityLogType(this PersistenceTest test) { return(new ActivityLogType { SystemKeyword = "SystemKeyword 1", Name = "Name 1", Enabled = true, }); }
public static CategoryTemplate GetTestCategoryTemplate(this PersistenceTest test) { return(new CategoryTemplate { Name = "Name 1", ViewPath = "ViewPath 1", DisplayOrder = 1, }); }
public static PollAnswer GetTestPollAnswer(this PersistenceTest test) { return(new PollAnswer { Name = "Answer 1", NumberOfVotes = 1, DisplayOrder = 2 }); }
public static Setting GetTestSetting(this PersistenceTest test) { return(new Setting { Name = "Setting1", Value = "Value1", StoreId = 1, }); }
public static PermissionRecord GetTestPermissionRecord(this PersistenceTest test) { return(new PermissionRecord { Name = "Name 1", SystemName = "SystemName 2", Category = "Category 4", }); }
public static SearchTerm GetTestSearchTerm(this PersistenceTest test) { return(new SearchTerm { Keyword = "Keyword 1", StoreId = 1, Count = 2, }); }
public static CustomerPassword GetTestCustomerPassword(this PersistenceTest test) { return(new CustomerPassword { Password = "******", PasswordFormat = PasswordFormat.Clear, PasswordSalt = string.Empty, CreatedOnUtc = new DateTime(2010, 01, 01) }); }
public static UrlRecord UrlRecord(this PersistenceTest test) { return(new UrlRecord { EntityId = 1, EntityName = "EntityName 1", Slug = "Slug 1", LanguageId = 2 }); }
public static CustomerRole GetTestCustomerRole(this PersistenceTest test) { return(new CustomerRole { Name = "Administrators", Active = true, IsSystemRole = true, SystemName = "Administrators" }); }
public static BlogComment GetTestBlogComment(this PersistenceTest test) { return(new BlogComment { IsApproved = true, CreatedOnUtc = new DateTime(2010, 01, 03), Customer = test.GetTestCustomer(), Store = test.GetTestStore() }); }
public static CustomerAttribute GetTestCustomerAttribute(this PersistenceTest test) { return(new CustomerAttribute { Name = "Name 1", IsRequired = true, AttributeControlType = AttributeControlType.Datepicker, DisplayOrder = 2 }); }
public static LocalizedProperty GetTestLocalizedProperty(this PersistenceTest test) { return(new LocalizedProperty { EntityId = 1, LocaleKeyGroup = "LocaleKeyGroup 1", LocaleKey = "LocaleKey 1", LocaleValue = "LocaleValue 1" }); }
public static ForumGroup GetTestForumGroup(this PersistenceTest test) { return(new ForumGroup { Name = "Forum Group 1", DisplayOrder = 1, CreatedOnUtc = new DateTime(2010, 01, 01), UpdatedOnUtc = new DateTime(2010, 01, 02), }); }
public static ForumPost GetTestForumPost(this PersistenceTest test) { return(new ForumPost { Text = "Forum Post 1 Text", IPAddress = "127.0.0.1", CreatedOnUtc = new DateTime(2010, 01, 01), UpdatedOnUtc = new DateTime(2010, 01, 02) }); }
public static GenericAttribute GetTestGenericAttribute(this PersistenceTest test) { return(new GenericAttribute { EntityId = 1, KeyGroup = "KeyGroup 1", Key = "Key 1", Value = "Value 1", StoreId = 2, }); }
public static NewsComment GetTestNewsComment(this PersistenceTest test) { return(new NewsComment { CommentText = "Comment text 1", IsApproved = false, CreatedOnUtc = new DateTime(2010, 01, 03), Customer = test.GetTestCustomer(), Store = test.GetTestStore() }); }
public static NewsLetterSubscription GetTestNewsLetterSubscription(this PersistenceTest test) { return(new NewsLetterSubscription { Email = "*****@*****.**", NewsLetterSubscriptionGuid = _newsLetterSubscriptionGuid, CreatedOnUtc = new DateTime(2010, 01, 01), StoreId = 1, Active = true }); }