// Copyright (c) Umbraco. // See LICENSE for more details. using System; namespace Umbraco.Cms.Tests.Common.Published; public static class PublishedContentXml { // The content XML that was used for the old PublishContentCacheTests public static string PublishContentCacheTestsXml() => @" ]> "; // The content XML that was used in the old BaseWebTest class public static string BaseWebTestXml(int templateId) => @" ]> 1 This is some content]]> "; // The content XML that was used in the old TestWithDatabase class public static string TestWithDatabaseXml(int templateId) => @" ]> 1 This is some content]]> "; // The content XML that was used in the old PublishedContentTest class public static string PublishedContentTestXml(int templateId, Guid node1173Guid) => @" ]> 1 This is some content]]> 0 0 0 1 "; }