mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add notes, numeric helper
This commit is contained in:
@@ -16,7 +16,7 @@ namespace SabreTools.Test.Core
|
||||
[InlineData(" 12345 ", 12345L)]
|
||||
public void CleanLongTest(string input, long? expected)
|
||||
{
|
||||
long? actual = Utilities.CleanLong(input);
|
||||
long? actual = NumberHelper.ConvertToInt64(input);
|
||||
Assert.Equal(expected, actual);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user