public void Behavior_Property() { // Arrange HttpBindingBehavior expectedBehavior = (HttpBindingBehavior)(-20); // Act HttpBindingBehaviorAttribute attr = new HttpBindingBehaviorAttribute(expectedBehavior); // Assert Assert.Equal(expectedBehavior, attr.Behavior); }