File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public void TileBboxLevel15(string input, string expected)
37
37
38
38
[ Theory ]
39
39
[ InlineData ( "G001110221-021123" , "15 7245 403" ) ]
40
- public void TileDecode1DString ( string input , string expected )
40
+ public void TileDecode1DStringToLXY ( string input , string expected )
41
41
{
42
42
//Arrange
43
43
var _tile = new Tile ( input ) ;
@@ -49,5 +49,20 @@ public void TileDecode1DString(string input, string expected)
49
49
Assert . Equal ( expected , actual ) ;
50
50
}
51
51
52
+
53
+ [ Theory ]
54
+ [ InlineData ( "G001110221-021123-021123.02203010012" , "G001110221-021123-021123.02203010012" ) ]
55
+ public void Tile1DStringDecodeAndEncode ( string input , string expected )
56
+ {
57
+ //Arrange
58
+ var _tile = new Tile ( input ) ;
59
+
60
+ //Act
61
+ var actual = _tile . ToString ( ) ;
62
+
63
+ //Assert
64
+ Assert . Equal ( expected , actual ) ;
65
+ }
66
+
52
67
}
53
68
}
You can’t perform that action at this time.
0 commit comments