Imported Upstream version 5.2.0.175

Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2017-06-07 13:16:24 +00:00
parent 4bdbaf4a88
commit 966bba02bb
8776 changed files with 346420 additions and 149650 deletions

View File

@@ -118,9 +118,9 @@ namespace MonoTests.Microsoft.VisualBasic
sb.Length = 0;
Assert.AreEqual ("6.445!", Generate (new CodePrimitiveExpression ((float) 6.445), sw), "#8");
sb.Length = 0;
Assert.AreEqual ("5.76", Generate (new CodePrimitiveExpression ((double) 5.76), sw), "#9");
Assert.AreEqual ("5.76R", Generate (new CodePrimitiveExpression ((double) 5.76), sw), "#9");
sb.Length = 0;
Assert.AreEqual ("7.667", Generate (new CodePrimitiveExpression ((decimal) 7.667), sw), "#10");
Assert.AreEqual ("7.667D", Generate (new CodePrimitiveExpression ((decimal) 7.667), sw), "#10");
sb.Length = 0;
Assert.AreEqual ("true", Generate (new CodePrimitiveExpression (true), sw), "#11");
sb.Length = 0;

View File

@@ -202,9 +202,6 @@ namespace MonoTests.Microsoft.VisualBasic
"Public MustInherit Class Test1{0}" +
" {0}" +
" Public MustOverride Property Name() As String{0}" +
" Get{0}" +
" Set{0}" +
" End Property{0}" +
"End Class{0}", NewLine), code);
}