SenseNet.ContentRepository.Tests.NotificationTests.DestroyPlayground C# (CSharp) Метод

DestroyPlayground() приватный Метод

private DestroyPlayground ( ) : void
Результат void
        public static void DestroyPlayground()
        {
            if (Node.Exists(_testRootPath))
                Node.ForceDelete(_testRootPath);
            foreach (string path in _pathsToDelete)
            {
                Node n = Node.LoadNode(path);
                if (n != null)
                    Node.ForceDelete(path);
            }

        }
        [TestInitialize()]