No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

31 líneas
1.1KB

  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.