You've already forked linux-packaging-mono
Imported Upstream version 3.8.0
Former-commit-id: 6a76a29bd07d86e57c6c8da45c65ed5447d38a61
This commit is contained in:
@ -1216,6 +1216,15 @@ namespace MonoTests.System
|
||||
DateTime.Parse ("Sat,,, 01,,, Oct,,, ,,,1994 03:00:00", CultureInfo.InvariantCulture);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TryParse_Bug11630 ()
|
||||
{
|
||||
DateTime parsed;
|
||||
|
||||
Assert.IsTrue (DateTime.TryParse ("10Feb2013", out parsed));
|
||||
Assert.AreEqual (new DateTime (2013, 2, 10), parsed);
|
||||
}
|
||||
|
||||
[Test]
|
||||
[ExpectedException (typeof (FormatException))]
|
||||
public void Parse_CommaAfterHours ()
|
||||
|
Reference in New Issue
Block a user