1234567891011121314151617181920212223242526272829 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- namespace NTERA.Interpreter.Tests
- {
- [TestClass]
- public class KeywordTests
- {
- #region Console
- #endregion
- #region Arithmetic
- [TestMethod]
- public void Times()
- {
- string code =
- @"LOCAL = 5
- TIMES LOCAL, 1.5";
- var interpreter = Common.Create(code);
- Common.AssertLocal(interpreter, 7.5);
- }
- #endregion
- }
- }
|