Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2017-02-21 20:49:06 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2017-02-21 20:49:06 +0300
commit926643c395774af7a328348c9e2fa6f43781f743 (patch)
tree30d798e1833a4583276ba5bc64a2fcbf13196404 /main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests
parent89070c862a68546ff5f148abd7f7bcb5906cb51c (diff)
parentc901870fdca4dd4637a9dd8de62a8121030d56b1 (diff)
Merge remote-tracking branch 'origin/vNext' into roslyn-ivt
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs
index 80c83a68c0..ffda5ad636 100644
--- a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs
+++ b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.Tests/EvaluationTests.cs
@@ -1048,6 +1048,10 @@ namespace MonoDevelop.Debugger.Tests
if (soft != null && soft.ProtocolVersion < new Version (2, 31))
Assert.Ignore ("A newer version of the Mono runtime is required.");
+ val = Eval ("(int)19.7");
+ Assert.AreEqual ("19", val.Value);
+ Assert.AreEqual ("int", val.TypeName);
+
val = Eval ("(byte)n");
Assert.AreEqual ("32", val.Value);
Assert.AreEqual ("byte", val.TypeName);