xUnit-style unit testing for Borland Delphi programs.

learn more… | top users | synonyms

10
votes
4answers
373 views

Delphi unit test for a TThread with FreeOnTerminate = True

What is the best way to write a Delphi DUnit test for a TThread descendant when FreeOnTerminate = True? The TThread descendant returns a reference which I need to test for, but I can't figure out how ...
2
votes
2answers
151 views

What's the easiest way to access other .exe data in delphi?

I trying to implement some basic automated testing on a 10 million LOC project that don't follow good OO pratices (ex: isolating business logic into classes/units) with the DUnit that comes along with ...
3
votes
2answers
313 views

What kind of test cases we can write using DUnit?

I am using Delphi 7. I am new to DUnit, my doubt is what kind of test cases I can write using DUnit and how (that is very important for me). Is it possible to write test cases for a particular ...
1
vote
0answers
148 views

DUnit Download and Document On How To Use It [closed]

I am using Delphi 7. I need to download the DUnit and need a document on it about how to use DUnit. Could anybody provide me the proper link for this. The links which I am trying seems that they ...
0
votes
3answers
214 views

Where is DUnit under Delphi XE?

Looks like DUNIT is already integrated under Delphi XE. But I can't find it. My questions are: How can I access it? Do I have to install it manually? I don't remember Delphi setup to ask me if I ...
3
votes
2answers
308 views

Delphi 7, FastMM and DUnit GUITesting failing tests with false memory leaks

I've had some problems with FastMM false positives. This time, the leaks are in the cases testing forms. It's very similar to the one I described here. I got a form and some plain old VCL controls ...
0
votes
1answer
186 views

What alternative to DUnit with C++ Builder?

I have some projects developed with C++ builder XE. I would like to add some unit test, but the DUnit framework installed is nice for Delphi, but the integration with C++ builder is not so good (and ...
3
votes
3answers
445 views

Single-source unit tests for Free Pascal and Delphi

Is there a way to write unit tests so that they can be compiled and run both with Delphi and Free Pascal? There are different unit test frameworks for Delphi and Free Pascal, which causes duplicate ...
5
votes
1answer
184 views

How to deal with tangled uses dependencies in order to start unit testing?

I have a messy Delphi 7 legacy system to maintain and develop. I am already reading "Working effectively with legacy code" and I like this book very much. In order to start following the advices in ...
0
votes
1answer
208 views

how to compile DUnit2

I've just downloaded from SVN the DUnit2 code base. Does someone has compiled it successfully? What steps/prerequisites I've to follow in order to compile it? Do someone knows if an already compiled ...
6
votes
1answer
162 views

How to use the XPObserver unit contained in dunit's DUnitWizard, to implement an observer pattern, or even a MVC pattern?

There are good examples of Observer pattern in Delphi, thanks to the wise questions & answers on Stackoverflow, such as Best way to implement observer pattern in Delphi and Are there any ...
1
vote
3answers
367 views

Delphi 7, DUnit and FastMM reporting Strings incorrectly

I'm using DUnit and FastMM to catch unfinalized memory blocks but there seems to be a Bug. I dunno if its in FastMM, DUnit or in Delphi itself, but here goes: When my Test Case has internal strings, ...
3
votes
1answer
146 views

How to unit test third-party email components in Delphi?

I'm writing some new code that involves POP3 manipulation. I'm trying to come up with a design that allows me to write tests, so it's fairly decoupled and exercises most of the new code I'm writing. ...
4
votes
1answer
147 views

Equivalent to Python DocTest in Delphi?

Is there any equivalent of DocTest for Delphi. I use DUnit but I like the Python DocTest idea. I saw some answer like here but I think that, for simple functions, a DocTest like could be OK. My goal ...
5
votes
1answer
111 views

What can cause the compiler not to produce a console output

I have a DUnit project that won't compile as Console if I add some units. The Project (dpr) is created by the Wizard and CONSOLE_TESTRUNNER is defined. {$IFDEF CONSOLE_TESTRUNNER} {$APPTYPE CONSOLE} ...
7
votes
2answers
382 views

In a Dunit project and exe version info is disabled, how do I get it back?

Why cant I set a version info in a Dunit Test projet? The checkbox is disabled for this projetct, but not for other projects. See the screenshot:
3
votes
1answer
152 views

How to get active TGUITestRunner from DUnit test?

TGUITestRunner form represents DUnit test results and created once by GUITestRunner.RunTest procedure: procedure RunTest(test: ITest); begin with TGUITestRunner.Create(nil) do begin try ...
3
votes
3answers
220 views

How to see the Status messages in DUnit GUI from all the test cases at once?

You can use TAbstractTest.Status procedure to show some debug messages in DUnit GUI during your tests. But when I run the group of tests, I can see only the status messages from the last executed ...
8
votes
1answer
314 views

Unit testing a Firemonkey Application

I'm trying to use DUnit, which came with RAD Studio XE2, to unit testing a Firemonkey app (C++). The problem is, DUnit is a VCL project, and this makes me unable to include the Firemonkey Unit Forms ...
2
votes
0answers
289 views

DUnit GUI test of modal window close hangs when run on TeamCity

I have been trying to do a GUI test with DUnit which includes interacting with modal windows via a message loop timer system by @tomazy (see my earlier question for more details: (How) Can I use ...
2
votes
2answers
291 views

TIdHTTPServer raise EThread error 6 when activating it in my DUnit test

I need a local HTTP server for my unit test. When I try to activate TIdHTTPServer at SetUp, it fails with EThread message: "Thread Error: descriptor not valid (6)" This is how I initialize it: ...
6
votes
3answers
250 views

HTTP server for unit tests in Delphi

I need to test some HTTP components in my Delphi app. I use DUnit and want to add some automation into testing. So my testing code need to start the local HTTP server, configure it (for example, ...
4
votes
2answers
261 views

(How) Can I use FutureWindows with standard file open dialogs?

I've been trying to use tomazy's FutureWindows infrastructure (see his answer at Delphi GUI Testing and Modal Forms or the home of the tool at https://github.com/tomazy/DelphiUtils), but would like to ...
6
votes
2answers
296 views

DUnit GUI Testing: Can I force 'Application' to a different “form”?

I'm trying to run a GUI unit test with DUnit to an application whose mainform creates dynamically frames to itself. I've been able to create the application-to-test's mainform as a form in the test ...
11
votes
4answers
481 views

Can I write 'parameterized' tests in DUnit

I am using DUnit to test a Delphi library. I sometimes run into cases, where i write several very similar tests to check multiple inputs to a function. Is there a way to write (something resembling) ...
8
votes
3answers
383 views

DUnit tests hierarchy

Currently I am using 2-level test hierarchy in DUnit (Test Project -> Test Case -> Test method; see example below). Is it possible to introduce 3rd level or even more levels?
2
votes
1answer
221 views

How to break dependency to enable unittesting

I have spent much time thinking about unittesting. I have at least bought Working Effectively with Legacy Code as an EBook. Most of it make sense, it seems to be a great book about unittesting old ...
32
votes
1answer
430 views

How can I customize the DUnit test case classes generated by the Test Case wizard?

After poking around in the files installed by Delphi, I have found a file "C:\Program Files\Embarcadero\RAD Studio\7.0\ObjRepos\en\UnitTestFrameworks.xml" This file has a number of sections for ...
17
votes
3answers
513 views

How to increase testability?

Background I work in a team of 7 developers and 2 testers that work on a logistics system. We use Delphi 2007 and modeldriven development with Bold for Delphi as framework. The system has been in ...
7
votes
1answer
186 views

What Delphi components ship with unit tests? [closed]

Given the popularity of unit testing, and the inclusion of DUnit with Delphi, has this been embraced by any component vendors who have released their source along with a suite of unit tests? I'm ...
2
votes
2answers
391 views

How to use visual components in delphi unit tests?

As is sometimes usual in visual applications, I have some code where data is maintained in a visual component (a TTreeView component). I'm refactoring the code and creating unit tests for the logic. ...
5
votes
2answers
150 views

Can I call ToolsAPI from code in the DUnit GUITestrunner?

Is there a way to initialize the global variable BorlandIDEServices in ToolSAPI unit so that it can be used from the DUnit GUITestrunner code? procedure TGUITestRunner.FailureListViewClick(Sender: ...
4
votes
3answers
345 views

How can I test functions and procedures as they don't belong to classes in Delphi?

I have several little functions in an old Unit called Utils.pas. Now I'd like refactoring some of them, but I think it's better to write test before. With DUnit I think it's impossible without a ...
9
votes
2answers
530 views

Update DUnit on Delphi 2010

Does anyone know how to update dUnit which comes with Delphi 2010 to the latest svn source code?
2
votes
3answers
723 views

How do I determine the type of the implementing object of an interface

I'm attempting to write a unit test for a simple factory class that creates one of several possible implementing objects and returns it as an interface reference. DUnit has a built in procedure, ...
2
votes
1answer
95 views

How can I “Collapse All” Nodes in TGUITestRunner?

DUnit offers a context menu item "Expand all" and "Hide Test Nodes". In my test projects however, choosing the latter option still leaves very many test suite hierarchy nodes open. Only the test nodes ...
7
votes
1answer
474 views

DUnit Compare Two Text Files and show Diff

Is there a way to compare two text files and show the diff if they are not identical in dunit? The easy start is to read them to TStringList, however the code for comparing two text file is much more ...
3
votes
1answer
232 views

Dunit console mode - Executing tests twice

I have a dunit test project and I am trying to run it in console mode. When I execute the project it runs twice (it opens only one console window and I see it executing twice the tests) and it is also ...
5
votes
4answers
490 views

Using DUnit from the Delphi IDE and avoid breakpoint on exceptions

I'm using Delphi XE and I've got a project group containing the main application and a DUnit test application. From time to time, I go to the DUnit test application to add some tests and run existing ...
7
votes
6answers
430 views

How to access fields of a TTestCase in a TTestSetup class

I am creating unit tests with DUnit. I have a class that takes quite a long time to initialize. I derive a class TMyTestSetup from TTestSetup and override its Setup method. This SetUp method is only ...
13
votes
3answers
1k views

CheckException only accepts 0-parameter methods; how do I test that other methods throw exceptions?

I'm wondering what's the best practice to test for exceptions in dunit. I am not very familiar with method pointers in Delphi. Is there any possibility to bind arguments to a method pointer so that it ...
6
votes
1answer
1k views

dunit test result messages in hudson

i am using Hudson as CI server for Delphi 2010 projects. The XMLTestRunner.pas unit writes DUnit test result to a xml file that is used by the hudson xUnit plugin to report test results. The xUnit ...
1
vote
2answers
367 views

Delphi 2007 Version Info missing from Exe

I have a Delphi 2007 project and I'm trying to set the Project->Options->'Version Info'. I enter the values into the form and save the project. However, when I build, the generated exe doesn't contain ...
3
votes
1answer
200 views

How can I disable DUnit tests by name programmatically?

For integration tests, I created a DUnit test suite which runs once for every version of a third party component (a message broker). Unfortunately, some tests always fail because of known bugs in some ...
5
votes
2answers
216 views

Where can I find an introduction to using DUnit with Delphi 2007 or newer?

I'm new to using and writing unit tests, but I've become convinced that they can help me write better code and ultimately save me time. I understand that DUnit is well integrated into Delphi 2006 and ...
4
votes
3answers
275 views

How do I prevent my unit tests from requiring knowledge about implementation internals when using mock objects?

I'm still in the learning stages regarding unit-testing and in particular regarding mocking (I'm using the PascalMock and DUnit frameworks). One thing I now stumbled over was that I couldn't find a ...
4
votes
5answers
206 views

Why does 'uses unit' disappear when I had a new unit?

I have a Unit test project for my Application using DUnit framework. This project have a unit surrounded by a $IFDEF to output test-results in a xml file instead of the gui or just command line. ...
8
votes
3answers
1k views

DUnit: How to run tests?

How do i run TestCase's from the IDE? i created a new project, with a single, simple, form: unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ...
8
votes
2answers
1k views

Getting DUnit Test Coverage stats using FinalBuilder and AQTime

We have a large Delphi project (1.5 million lines of code), and we're moving to using agile processes. We already have a continous integration environment (FinalBuilder) which I've updated to ...
5
votes
5answers
486 views

How can I test a Singleton class with DUnit?

Or it's better to use another Design Pattern?

1 2