Mark van Renswoude
6764684c9e
Added: "Generate blank Hints file" option Added: proper support for xs:dateTime/xs:time types Changed: moved conversion and utility functions out of the generated source code to the external XMLDataBindingHelpers unit
18 lines
519 B
ObjectPascal
18 lines
519 B
ObjectPascal
program X2XMLDataBindingTests;
|
|
|
|
uses
|
|
ActiveX,
|
|
GUITestRunner,
|
|
ObjectMappingTests in 'Source\ObjectMappingTests.pas',
|
|
DataBindingResultXML in 'Source\DataBindingResultXML.pas',
|
|
XMLDataBindingGenerator in '..\Units\XMLDataBindingGenerator.pas',
|
|
XMLDataBindingHelpers in '..\Units\XMLDataBindingHelpers.pas',
|
|
XMLDataBindingUtilsTest in 'Source\XMLDataBindingUtilsTest.pas',
|
|
XMLDataBindingUtils in '..\Shared\XMLDataBindingUtils.pas';
|
|
|
|
begin
|
|
CoInitialize(nil);
|
|
RunRegisteredTests;
|
|
end.
|
|
|