Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- <%
- Option Explicit
- %>
- <!--#include file="../MVC/lib.all.asp"-->
- <!--#include file="ASPUnit/include/ASPUnitRunner.asp"-->
- <!--#include file="TestCase_Automapper_Function.asp"-->
- <!--#include file="TestCase_Automapper_AutoMap.asp"-->
- <!--#include file="TestCase_Automapper_FlexMap.asp"-->
- <!--#include file="TestCase_Automapper_DynMap.asp"-->
- <!--#include file="TestCase_StringBuilder.asp"-->
- <!--#include file="TestCase_HtmlHelperDropdownLists.asp"-->
-
- <%
- 'Used in some of the test case classes included into this file.
- 'Could remove and just use inline numbers in the classes and comment what they mean when called.
- 'Ref: http://www.w3schools.com/ado/ado_datatypes.asp
- dim adVarChar : adVarChar = CInt(200)
- dim adInteger : adInteger = CInt(3)
- dim adBoolean : adBoolean = CInt(11)
- dim adDate : adDate = CInt(7)
-
-
- dim Runner : set Runner = new UnitRunner
- Runner.AddTestContainer new Automapper_Function_Tests
- Runner.AddTestContainer new AutoMap_Tests
- Runner.AddTestContainer new FlexMap_Tests
- Runner.AddTestContainer new DynMap_Tests
- Runner.AddTestContainer new StringBuilder_Tests
- Runner.Display
- %>
|