Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 8 mois
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.