public void Behavior_Property()
        {
            // Arrange
            HttpBindingBehavior expectedBehavior = (HttpBindingBehavior)(-20);

            // Act
            HttpBindingBehaviorAttribute attr = new HttpBindingBehaviorAttribute(expectedBehavior);

            // Assert
            Assert.Equal(expectedBehavior, attr.Behavior);
        }
 public HttpBindingBehaviorAttribute(HttpBindingBehavior behavior)
 {
     Behavior = behavior;
 }
 public HttpBindingBehaviorAttribute(HttpBindingBehavior behavior)
 {
     Behavior = behavior;
 }