You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 8 месеца
123456789101112131415161718192021222324252627282930
  1. <%
  2. Option Explicit
  3. %>
  4. <!--#include file="../MVC/lib.all.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. <!--#include file="TestCase_StringBuilder.asp"-->
  11. <!--#include file="TestCase_HtmlHelperDropdownLists.asp"-->
  12. <%
  13. 'Used in some of the test case classes included into this file.
  14. 'Could remove and just use inline numbers in the classes and comment what they mean when called.
  15. 'Ref: http://www.w3schools.com/ado/ado_datatypes.asp
  16. dim adVarChar : adVarChar = CInt(200)
  17. dim adInteger : adInteger = CInt(3)
  18. dim adBoolean : adBoolean = CInt(11)
  19. dim adDate : adDate = CInt(7)
  20. dim Runner : set Runner = new UnitRunner
  21. Runner.AddTestContainer new Automapper_Function_Tests
  22. Runner.AddTestContainer new AutoMap_Tests
  23. Runner.AddTestContainer new FlexMap_Tests
  24. Runner.AddTestContainer new DynMap_Tests
  25. Runner.AddTestContainer new StringBuilder_Tests
  26. Runner.Display
  27. %>

Powered by TurnKey Linux.