We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab30e1 commit 96a5bcfCopy full SHA for 96a5bcf
1 file changed
tests/PolylineAlgorithm.Abstraction.Tests/PolylineEncoderTest.cs
@@ -14,6 +14,7 @@ public class PolylineEncoderTest {
14
public void Constructor_Parameterless_Ok() {
15
// Arrange && Act
16
var encoder = new PolylineEncoder();
17
+
18
// Assert
19
Assert.IsNotNull(encoder);
20
Assert.IsNotNull(encoder.Options);
@@ -23,8 +24,10 @@ public void Constructor_Parameterless_Ok() {
23
24
public void Constructor_ValidOptions_Ok() {
25
// Arrange
26
var options = new PolylineEncodingOptions();
27
28
// Act
29
var encoder = new PolylineEncoder(options);
30
31
32
33
Assert.AreSame(options, encoder.Options);
0 commit comments