Skip to content

Commit 96a5bcf

Browse files
committed
fomatting
1 parent dab30e1 commit 96a5bcf

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/PolylineAlgorithm.Abstraction.Tests/PolylineEncoderTest.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class PolylineEncoderTest {
1414
public void Constructor_Parameterless_Ok() {
1515
// Arrange && Act
1616
var encoder = new PolylineEncoder();
17+
1718
// Assert
1819
Assert.IsNotNull(encoder);
1920
Assert.IsNotNull(encoder.Options);
@@ -23,8 +24,10 @@ public void Constructor_Parameterless_Ok() {
2324
public void Constructor_ValidOptions_Ok() {
2425
// Arrange
2526
var options = new PolylineEncodingOptions();
27+
2628
// Act
2729
var encoder = new PolylineEncoder(options);
30+
2831
// Assert
2932
Assert.IsNotNull(encoder);
3033
Assert.AreSame(options, encoder.Options);

0 commit comments

Comments
 (0)