Does anyone know how to update dUnit which comes with Delphi 2010 to the latest svn source code?

link|improve this question

1  
Uh, download it, and update the various library paths (environment and of your projects) to point to the source dir of the download instead of $(BDS)\Lib\DUnit? – Marjan Venema Jun 7 '11 at 17:16
+1 for Delphi :) – Chris Dennett Jun 7 '11 at 17:49
feedback

2 Answers

up vote 9 down vote accepted

Steps

  • Goto http://sourceforge.net/projects/dunit/
  • Download the zip file (currently version 9.3.0)
  • Unpack to a folder of your choice
  • Use Components|Install packages to remove the current DUnit package bpl.
  • Compile and install (optional) the new version. Compilation is needed only if you want to install the design time wizards or if you do not build your projects using the source. Installation is only needed if you want to use the design time wizards. Read the various doc and readme files for further instructions.
  • Update your environment's library path and the search paths of projects using DUnit:
    • take out any references to $(BDS)\source\DUnit*
    • put in a reference to the src subfolder of where you installed the new version

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.

link|improve this answer
1  
It may be a bit more complicated especially installing design time since it seems there are other design packages dependent on unittestide (at least I noticed intraweb) but good advice in general. +1 – TOndrej Jun 7 '11 at 18:17
newer packages will not install until previous version has been removed. – Premature Optimization Jun 7 '11 at 18:22
@TOndrej: where did you notice IntraWeb? I am looking through DUnit and I can't find any references...? – Marjan Venema Jun 7 '11 at 18:29
@user759588: you did notice the "Use Components|Install packages to remove the current DUnit package bpl" step? – Marjan Venema Jun 7 '11 at 18:30
-1. Did you ever have a look at DUnit 9.3.0? It contains packages for Delphi 5, 6 and 7 only. – Serg Jun 7 '11 at 18:38
show 10 more comments
feedback

You can either unregister current DUnit package by removing its key from Registry:

HKCU\Software\CodeGear\BDS\7.0\Known IDE Packages\$(BDS)\Bin\unittestide140.bpl

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.