|
From: <na...@us...> - 2007-02-25 16:19:14
|
Revision: 770
http://svn.sourceforge.net/instantobjects/revision/?rev=770&view=rev
Author: nandod
Date: 2007-02-25 08:19:14 -0800 (Sun, 25 Feb 2007)
Log Message:
-----------
* small fixes to the test project.
* svn:ignore set on various folders.
Modified Paths:
--------------
trunk/Tests/TestIO.dpr
Property Changed:
----------------
trunk/Demos/PrimerCross/
trunk/Source/
trunk/Source/Brokers/ADO/
trunk/Source/Brokers/ADO/D7/
trunk/Source/Brokers/BDE/
trunk/Source/Brokers/BDE/D7/
trunk/Source/Brokers/DBX/D7/
trunk/Source/Brokers/IBX/D7/
trunk/Source/Brokers/XML/D7/
trunk/Source/Catalogs/IBFb/D7/
trunk/Source/Catalogs/MSSql/
trunk/Source/Catalogs/MSSql/D7/
trunk/Source/Design/D7/
trunk/Source/PackageGroups/D7/
Property changes on: trunk/Demos/PrimerCross
___________________________________________________________________
Name: svn:ignore
- *.dcu
*.~*
*.ddp
*.exe
__history
*.identcache
*.local
+ *.dcu
*.~*
*.ddp
*.exe
__history
*.identcache
*.local
*.dsk
Property changes on: trunk/Source
___________________________________________________________________
Name: svn:ignore
+ __history
Property changes on: trunk/Source/Brokers/ADO
___________________________________________________________________
Name: svn:ignore
- *.dcu
+ *.dcu
*.~pas
*.~dfm
Property changes on: trunk/Source/Brokers/ADO/D7
___________________________________________________________________
Name: svn:ignore
- *.dcu
+ *.dcu
*.cfg
*.dof
Property changes on: trunk/Source/Brokers/BDE
___________________________________________________________________
Name: svn:ignore
- *.dcu
+ *.dcu
*.~dfm
*.~pas
Property changes on: trunk/Source/Brokers/BDE/D7
___________________________________________________________________
Name: svn:ignore
- *.dcu
+ *.dcu
*.cfg
*.dof
Property changes on: trunk/Source/Brokers/DBX/D7
___________________________________________________________________
Name: svn:ignore
- *.dcu
+ *.dcu
*.cfg
*.dof
Property changes on: trunk/Source/Brokers/IBX/D7
___________________________________________________________________
Name: svn:ignore
+ *.cfg
*.dcu
*.dof
Property changes on: trunk/Source/Brokers/XML/D7
___________________________________________________________________
Name: svn:ignore
+ *.cfg
*.dcu
*.dof
*.~dpk
Property changes on: trunk/Source/Catalogs/IBFb/D7
___________________________________________________________________
Name: svn:ignore
+ *.dcu
Property changes on: trunk/Source/Catalogs/MSSql
___________________________________________________________________
Name: svn:ignore
- *.dcu
+ *.dcu
__history
Property changes on: trunk/Source/Catalogs/MSSql/D7
___________________________________________________________________
Name: svn:ignore
+ *.dcu
Property changes on: trunk/Source/Design/D7
___________________________________________________________________
Name: svn:ignore
- *.dcu
*.~*
*.ddp
+ *.dcu
*.~*
*.ddp
*.cfg
*.dof
Property changes on: trunk/Source/PackageGroups/D7
___________________________________________________________________
Name: svn:ignore
+ *.dsk
*.~dsk
Modified: trunk/Tests/TestIO.dpr
===================================================================
--- trunk/Tests/TestIO.dpr 2007-02-25 15:49:44 UTC (rev 769)
+++ trunk/Tests/TestIO.dpr 2007-02-25 16:19:14 UTC (rev 770)
@@ -54,7 +54,8 @@
TestInstantParts in 'TestInstantParts.pas',
TestInstantReferences in 'TestInstantReferences.pas',
TestInstantCircularReferences in 'TestInstantCircularReferences.pas',
- TestInstantObjectReference in 'TestInstantObjectReference.pas';
+ TestInstantObjectReference in 'TestInstantObjectReference.pas',
+ MinimalModel in 'MinimalModel.pas';
{$R *.res}
{$R *.mdr} {TestModel}
@@ -62,8 +63,8 @@
begin
Application.Initialize;
InstantModel.ClassMetadatas.Clear;
-// Application.CreateForm(TGUITestRunner, TestRunner);
Application.CreateForm(TGUITestRunner, TestRunner);
+ //Application.CreateForm(TTestRunner, TestRunner);
Application.Run;
end.
|