選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
950B

  1. <%
  2. Option Explicit
  3. %>
  4. <!--#include file="../MVC/lib.Automapper.asp"-->
  5. <!--#include file="ASPUnit/include/ASPUnitRunner.asp"-->
  6. <!--#include file="TestCase_Automapper_Function.asp"-->
  7. <!--#include file="TestCase_Automapper_AutoMap.asp"-->
  8. <!--#include file="TestCase_Automapper_FlexMap.asp"-->
  9. <!--#include file="TestCase_Automapper_DynMap.asp"-->
  10. <%
  11. 'Used in each of the test case classes included into this file
  12. 'could remove and just use inline numbers in the classes and comment what they mean when called
  13. 'Ref: http://www.w3schools.com/ado/ado_datatypes.asp
  14. dim adVarChar : adVarChar = CInt(200)
  15. dim adInteger : adInteger = CInt(3)
  16. dim adBoolean : adBoolean = CInt(11)
  17. dim adDate : adDate = CInt(7)
  18. dim Runner : set Runner = new UnitRunner
  19. Runner.AddTestContainer new Automapper_Function_Tests
  20. Runner.AddTestContainer new AutoMap_Tests
  21. Runner.AddTestContainer new FlexMap_Tests
  22. Runner.AddTestContainer new DynMap_Tests
  23. Runner.Display
  24. %>

Powered by TurnKey Linux.