/branches/adinetz/runtime/FunctionsTests/TotalFunctionTest.cs

# · C# · 361 lines · 207 code · 50 blank · 104 comment · 4 complexity · 595d8ba86f83e83c0f3b52f335dbcdd1 MD5 · raw file

  1. // The following code was generated by Microsoft Visual Studio 2005.
  2. // The test owner should check each test for validity.
  3. using Microsoft.VisualStudio.TestTools.UnitTesting;
  4. using System;
  5. using System.Text;
  6. using System.Collections.Generic;
  7. using CBucks;
  8. namespace FunctionsTests {
  9. /// <summary>
  10. ///This is a test class for CBucks.TotalDomain&lt;TR&gt; and is intended
  11. ///to contain all CBucks.TotalDomain&lt;TR&gt; Unit Tests
  12. ///</summary>
  13. [TestClass()]
  14. public class TotalDomainTest {
  15. private TestContext testContextInstance;
  16. /// <summary>
  17. ///Gets or sets the test context which provides
  18. ///information about and functionality for the current test run.
  19. ///</summary>
  20. public TestContext TestContext {
  21. get {
  22. return testContextInstance;
  23. }
  24. set {
  25. testContextInstance = value;
  26. }
  27. }
  28. #region Total functions used for testing
  29. private static TotalDomain<int> itd;
  30. private static TotalDomain<bool> btd;
  31. private static TotalDomain<float> ftd;
  32. private static TotalDomain<object> otd;
  33. private static Span1D sp;
  34. #endregion Total functions used for testing
  35. #region Additional test attributes
  36. [ClassInitialize()]
  37. public static void MyClassInitialize(TestContext testContext) {
  38. itd = (TotalDomain<int>)PureFunc.createTotalDomain(typeof(int));
  39. btd = (TotalDomain<bool>)PureFunc.createTotalDomain(typeof(bool));
  40. ftd = (TotalDomain<float>)PureFunc.createTotalDomain(typeof(float));
  41. otd = (TotalDomain<object>)PureFunc.createTotalDomain(typeof(object));
  42. sp = (Span1D)Span1D.create(-5, 5);
  43. }
  44. #endregion
  45. /// <summary>
  46. ///A test for card
  47. ///</summary>
  48. [TestMethod()]
  49. [ExpectedException(typeof(InfiniteDomainException),
  50. "Cardinality of infinite domain function cannot be obtained")]
  51. public void cardTest() {
  52. int c = itd.card;
  53. }
  54. /// <summary>
  55. ///A test for card
  56. ///</summary>
  57. [TestMethod()]
  58. public void cardTest2() {
  59. Assert.AreEqual(2, btd.card, "Cardinality of total functions on finite " +
  60. "types equals to cardinality of that type");
  61. }
  62. /// <summary>
  63. ///A test for clamp (TR)
  64. ///</summary>
  65. [TestMethod()]
  66. public void clampTest() {
  67. Assert.AreEqual(10.0f, ftd.clamp(10.0f), "Clamping with a total function returns the " +
  68. "same value");
  69. }
  70. /// <summary>
  71. ///A test for Equals (object)
  72. ///</summary>
  73. [TestMethod()]
  74. public void EqualsTest() {
  75. Assert.AreEqual(itd, PureFunc.createTotalDomain(typeof(int)),
  76. "Total domains of the same type are equal");
  77. }
  78. /// <summary>
  79. ///A test for Equals (object)
  80. ///</summary>
  81. [TestMethod()]
  82. public void EqualsTest2() {
  83. Assert.AreNotEqual(itd, otd,
  84. "Total domains of different types are not equal");
  85. }
  86. /// <summary>
  87. ///A test for Equals (object)
  88. ///</summary>
  89. [TestMethod()]
  90. public void EqualsTest3() {
  91. Assert.AreNotEqual(itd, sp,
  92. "Total domains are not equal to functions of different classes");
  93. }
  94. /// <summary>
  95. ///A test for equiv (IPureFunction)
  96. ///</summary>
  97. [TestMethod()]
  98. public void equivTest() {
  99. Assert.IsTrue(TotalDomain<int>.equiv(itd, PureFunc.createTotalDomain(typeof(int))),
  100. "Total domains of the same type are equivalent");
  101. }
  102. /// <summary>
  103. ///A test for equiv (IPureFunction)
  104. ///</summary>
  105. [TestMethod()]
  106. public void equivTest2() {
  107. Assert.IsFalse(TotalDomain<int>.equiv(itd, otd),
  108. "Total domains of different types are not equivalent");
  109. }
  110. /// <summary>
  111. ///A test for equiv (IPureFunction)
  112. ///</summary>
  113. [TestMethod()]
  114. public void equivTest3() {
  115. Assert.IsFalse(TotalDomain<int>.equiv(itd, sp),
  116. "Total domains are generally not equivalent to functions of different " +
  117. "classes ");
  118. }
  119. //TODO: add equivalence test of boolean total vs. boolean array
  120. /// <summary>
  121. ///A test for eval (int)
  122. ///</summary>
  123. [TestMethod()]
  124. [ExpectedException(typeof(NotEvaluatableException), "Non-finite total " +
  125. "functions cannot be evaluated")]
  126. public void evalTest() {
  127. ftd.eval(0);
  128. }
  129. [TestMethod()]
  130. public void evalTest2() {
  131. Assert.AreEqual(10, itd.eval(10), "Integer total function can be evaluated");
  132. }
  133. [TestMethod()]
  134. public void evalTest3() {
  135. Assert.AreEqual(true, btd.eval(1), "Finite-type total function can be evaluated");
  136. }
  137. /// <summary>
  138. ///A test for first
  139. ///</summary>
  140. [TestMethod()]
  141. [ExpectedException(typeof(InfiniteDomainException), "Non-finite total " +
  142. "has its first element unevaluatable")]
  143. public void firstTest() {
  144. float f = ftd.first;
  145. }
  146. /// FINISHED CODING HERE
  147. /// <summary>
  148. ///</summary>
  149. [TestMethod()]
  150. public void GetHashCodeTest() {
  151. Assert.AreEqual(itd.GetHashCode(),
  152. ((TotalDomain<int>)PureFunc.createTotalDomain(typeof(int))).GetHashCode());
  153. }
  154. /// <summary>
  155. ///A test for includes (TotalDomain&lt;TR&gt;, IPureFunction)
  156. ///</summary>
  157. [TestMethod()]
  158. public void includesTest() {
  159. Assert.IsTrue(TotalDomain<int>.includes(itd, sp));
  160. }
  161. /// <summary>
  162. ///A test for includes (TotalDomain&lt;TR&gt;, IPureFunction)
  163. ///</summary>
  164. [TestMethod()]
  165. [ExpectedException(typeof(TypeMismatchException), "Inclusion not valid on " +
  166. "functions of different types")]
  167. public void includesTest2() {
  168. bool b = TotalDomain<int>.includes(itd, ftd);
  169. }
  170. /// <summary>
  171. ///A test for inters (TotalDomain&lt;TR&gt;, IPureFunction)
  172. ///</summary>
  173. [TestMethod()]
  174. public void intersTest() {
  175. Assert.AreEqual(sp, TotalDomain<int>.inters(itd, sp));
  176. }
  177. /// <summary>
  178. ///A test for isFinite
  179. ///</summary>
  180. [TestMethod()]
  181. public void isFiniteTest() {
  182. Assert.IsTrue(btd.isFinite, "Finite function total domains are finite");
  183. }
  184. /// <summary>
  185. ///A test for isFinite
  186. ///</summary>
  187. [TestMethod()]
  188. public void isFiniteTest2() {
  189. Assert.IsFalse(ftd.isFinite, "Infinite function total domains are non-finite");
  190. }
  191. /// <summary>
  192. ///A test for isin (TR)
  193. ///</summary>
  194. [TestMethod()]
  195. public void isinTest() {
  196. Assert.IsTrue(itd.isin(5), "Total functions include all type values");
  197. }
  198. /// <summary>
  199. ///A test for last
  200. ///</summary>
  201. [TestMethod()]
  202. [ExpectedException(typeof(InfiniteDomainException), "Non-finite type total " +
  203. "functions are do not have last elements")]
  204. public void lastTest() {
  205. int last = itd.last;
  206. }
  207. /// <summary>
  208. ///A test for last for finite types
  209. ///</summary>
  210. [TestMethod()]
  211. public void lastTest2() {
  212. bool last = btd.last;
  213. Assert.IsTrue(last);
  214. }
  215. /// <summary>
  216. ///A test for project (params int[])
  217. ///</summary>
  218. [TestMethod()]
  219. public void projectTest() {
  220. IPureFunction ipf = itd.project(0);
  221. Assert.AreEqual(ipf, itd, "Projection of non-tuple total functions to " +
  222. "its only dimension must give the same function");
  223. }
  224. /// <summary>
  225. ///A test for project (params int[])
  226. ///</summary>
  227. [TestMethod()]
  228. [ExpectedException(typeof(CBucks.RankException), "Projection to index " +
  229. "which exceeds rank raises the rank exception")]
  230. public void projectTest2() {
  231. IPureFunction ipf = itd.project(1);
  232. }
  233. /// <summary>
  234. ///A test for project (params int[])
  235. ///</summary>
  236. [TestMethod()]
  237. public void projectTest3() {
  238. IPureFunction isf = PureFunc.createTotalDomain(typeof(Tuple02<int, float>));
  239. IPureFunction ipf = isf.project(1);
  240. Assert.AreEqual(ipf, ftd, "Projection of tuple total functions to " +
  241. "a dimension must give the total function");
  242. }
  243. /// <summary>
  244. ///A test for pseudoInvert
  245. ///</summary>
  246. [TestMethod()]
  247. [Ignore()]
  248. public void pseudoInvertTest() {
  249. Assert.Inconclusive("Generics testing must be manually provided.");
  250. }
  251. /// <summary>
  252. ///A test for range
  253. ///</summary>
  254. [TestMethod()]
  255. public void rangeTest() {
  256. Assert.AreSame(otd.range, otd, "A range of total function is the function itself");
  257. }
  258. /// <summary>
  259. ///A test for rid
  260. ///</summary>
  261. [TestMethod()]
  262. [Ignore]
  263. public void ridTest() {
  264. Assert.Inconclusive("Generics testing must be manually provided.");
  265. }
  266. /// <summary>
  267. ///A test for ToString ()
  268. ///</summary>
  269. [TestMethod()]
  270. public void ToStringTest() {
  271. Assert.AreEqual("total", otd.ToString());
  272. }
  273. /// <summary>
  274. ///A test for trueInvert
  275. ///</summary>
  276. [TestMethod()]
  277. [Ignore]
  278. public void trueInvertTest() {
  279. Assert.Inconclusive("Generics testing must be manually provided.");
  280. }
  281. /// <summary>
  282. ///A test for union (TotalDomain&lt;TR&gt;, IPureFunction)
  283. ///</summary>
  284. [TestMethod()]
  285. public void unionTest() {
  286. Assert.AreEqual(itd, TotalDomain<int>.union(itd, sp));
  287. }
  288. /// <summary>
  289. ///A test for values
  290. ///</summary>
  291. [TestMethod()]
  292. [ExpectedException(typeof(InfiniteDomainException), "Values of an " +
  293. "infinite-domain function cannot be iterated through")]
  294. public void valuesTest() {
  295. int j = 0;
  296. foreach(int i in itd.values) j++;
  297. }
  298. /// <summary>
  299. ///A test for values
  300. ///</summary>
  301. [TestMethod()]
  302. public void valuesTest2() {
  303. int j = 0;
  304. foreach(bool b in btd.values)
  305. if(j++ == 0)
  306. Assert.IsFalse(b);
  307. else
  308. Assert.IsTrue(b);
  309. }
  310. }
  311. }