Skip to content

Commit

Permalink
Merge pull request #3916 from imcarolwang/issue3860
Browse files Browse the repository at this point in the history
Unit test for SecurityBindingElement.KeyEntropyMode.
  • Loading branch information
imcarolwang authored Sep 19, 2019
2 parents 0d4e2a1 + 6ee5984 commit 013768e
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,11 @@ public static void Property_DefaultAlgorithmSuite()
TransportSecurityBindingElement securityBindingElement = new TransportSecurityBindingElement();
Assert.Equal(securityBindingElement.DefaultAlgorithmSuite, SecurityAlgorithmSuite.Basic256);
}

[WcfFact]
public static void Property_KeyEntropyMode()
{
TransportSecurityBindingElement securityBindingElement = new TransportSecurityBindingElement();
Assert.Equal(securityBindingElement.KeyEntropyMode, SecurityKeyEntropyMode.CombinedEntropy);
}
}

0 comments on commit 013768e

Please sign in to comment.