Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

33 wiersze
1.2KB

  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. <!--#include file="TestCase_PurpleEnvelopeReport.asp"-->
  13. <%
  14. 'Used in some of the test case classes included into this file.
  15. 'Could remove and just use inline numbers in the classes and comment what they mean when called.
  16. 'Ref: http://www.w3schools.com/ado/ado_datatypes.asp
  17. dim adVarChar : adVarChar = CInt(200)
  18. dim adInteger : adInteger = CInt(3)
  19. dim adBoolean : adBoolean = CInt(11)
  20. dim adDate : adDate = CInt(7)
  21. dim Runner : set Runner = new UnitRunner
  22. Runner.AddTestContainer new Automapper_Function_Tests
  23. Runner.AddTestContainer new AutoMap_Tests
  24. Runner.AddTestContainer new FlexMap_Tests
  25. Runner.AddTestContainer new DynMap_Tests
  26. Runner.AddTestContainer new StringBuilder_Tests
  27. Runner.AddTestContainer new PurpleEnvelopeReport_Tests
  28. Runner.Display
  29. %>

Powered by TurnKey Linux.