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

InitStore_InvalidScopes() public method

public InitStore_InvalidScopes ( IsolatedStorageScope scope ) : void
scope IsolatedStorageScope
return void
        public void InitStore_InvalidScopes(IsolatedStorageScope scope)
        {
            try
            {
                s_verifyScopeMethod.Invoke(null, new object[] { scope });
            }
            catch (TargetInvocationException e)
            {
                Assert.IsType<ArgumentException>(e.InnerException);
            }
        }