1
0
mirror of synced 2024-11-15 03:23:51 +00:00
x2xmldatabinding/Tests/X2XMLDataBindingTests.dpr
Mark van Renswoude 6764684c9e Added: namespace to hints and settings XML files
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
2008-04-24 14:37:05 +00:00

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.