Skip to content

Commit

Permalink
Review feedback/test case names.
Browse files Browse the repository at this point in the history
  • Loading branch information
nblumhardt authored Jun 3, 2017
1 parent 888a498 commit 8c33f23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Serilog.Tests/Parameters/PropertyValueConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public void ValueTuplesAreRecognizedWhenDestructuring()
}

[Fact]
public void AllTupleLengthsUpToSevenAreSupported()
public void AllTupleLengthsUpToSevenAreSupportedForCapturing()
{
var tuples = new object[]
{
Expand All @@ -291,14 +291,14 @@ public void AllTupleLengthsUpToSevenAreSupported()
}

[Fact]
public void EightPlusValueTupleElementsAreIgnored()
public void EightPlusValueTupleElementsAreIgnoredByCapturing()
{
var scalar = _converter.CreatePropertyValue((1, 2, 3, 4, 5, 6, 7, 8));
Assert.IsType<ScalarValue>(scalar);
}

[Fact]
public void DestructuringIsTransitivelyApplied()
public void ValueTupleDestructuringIsTransitivelyApplied()
{
var tuple = _converter.CreatePropertyValue(ValueTuple.Create(new {A = 1}), true);
var sequence = Assert.IsType<SequenceValue>(tuple);
Expand Down

0 comments on commit 8c33f23

Please sign in to comment.