System.IO.IsolatedStorage.GetStoreTests.GetUserStoreForApplication C# (CSharp) Method

GetUserStoreForApplication() private method

private GetUserStoreForApplication ( ) : void
return void
        public void GetUserStoreForApplication()
        {
            var isf = IsolatedStorageFile.GetUserStoreForApplication();
            string root = isf.GetUserRootDirectory();
            Assert.EndsWith(@"AppFiles" + Path.DirectorySeparatorChar, root);
            Assert.True(Directory.Exists(root), "store root folder should exist");
        }