Does anyone know how to update dUnit which comes with Delphi 2010 to the latest svn source code?
feedback
|
|
Steps
Update The latest version on sourceforge is 9.3.0, but that is not the latest DUnit version. To get the latest DUnit version, you can go to its SVN repository: https://dunit.svn.sourceforge.net/svnroot/dunit/trunk/ The are at 9.4.0 (revision 41 according to the top of the page, version found in readme-9.4.txt and release.ini). The sources found there do not contain any packages for Delphi versions past D7, but as mentioned in my response to Serg, these packages are for the DUnitWizards which were contributed from outside the main DUnit project. To use DUnit, you don't need these wizards. In fact, DUnit itself does not have any packages! I think you can still use the wizards (or should I say project/unit templates) that come standard with Delphi and just make sure that your library and search paths point to the new version... In fact, I know you can, because that is what I did a couple of days ago: use the File|New|Other|Unit test| project and unit templates that come standard with the IDE, but compile against the newest sources downloaded from SVN. | |||||||||||||
feedback
|
|
You can either unregister current DUnit package by removing its key from Registry:
Then download and install the new version from any folder you want, into the IDE as you install any other IDE package. Or you build the new version, copy the generated BPL file to $(BDS)\bin\ folder, and its .DCU files to $(BDS)\Lib\ folder, and replace $(BDS)\Source\DUnit folder with the source folder you downloaded from SVN. | |||
|
feedback
|