AspNetWebStack/test/Microsoft.Web.Mvc.Test/Test/SkipBindingAttributeTest.cs

25 строки
663 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.Web.Mvc;
using Microsoft.TestCommon;
namespace Microsoft.Web.Mvc.Test
{
public class SkipBindingAttributeTest
{
[Fact]
public void GetBinderReturnsModelBinderWhichReturnsNull()
{
// Arrange
CustomModelBinderAttribute attr = new SkipBindingAttribute();
IModelBinder binder = attr.GetBinder();
// Act
object result = binder.BindModel(null, null);
// Assert
Assert.Null(result);
}
}
}