Skip to content

Commit

Permalink
Merge pull request #3923 from willaimyou/you
Browse files Browse the repository at this point in the history
add unitest for issue #3867
  • Loading branch information
StephenBonikowsky authored Sep 23, 2019
2 parents 5b73c65 + 25362fd commit b721c60
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.


using System.Collections.ObjectModel;
using System.ServiceModel.Security.Tokens;
using Infrastructure.Common;
using Xunit;

public static class SupportingTokenParametersTest
{
[WcfFact]
public static void Property_Signed()
{
SupportingTokenParameters stp = new SupportingTokenParameters();
Assert.NotNull(stp.Signed);
Assert.Equal(new Collection<SecurityTokenParameters>(), stp.Signed);
}
}

0 comments on commit b721c60

Please sign in to comment.