Tagged Questions

31
votes
1answer
294 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 ...
14
votes
3answers
241 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 ...
14
votes
5answers
2k views

Measuring code coverage in Delphi

Is there any way to measure code coverage with DUnit? Or are there any free tools accomplishing that? What do you use for that? What code coverage do you usually go for? Jim McKeeth: Thanks for the ...
11
votes
6answers
492 views

How to start unit-test old and new code?

I admit that I have almost none experience of unittesting. I did a try with DUnit a while ago but gave up because there was so many dependencies between classes in my application. It is a rather big ...
9
votes
2answers
267 views

Update DUnit on Delphi 2010

Does anyone know how to update dUnit which comes with Delphi 2010 to the latest svn source code?
8
votes
3answers
444 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 ...
7
votes
4answers
140 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) ...
7
votes
1answer
229 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 ...
7
votes
2answers
666 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 ...
7
votes
5answers
2k views

How can I test private methods with DUnit?

I have a class that I am unit testing into with DUnit. It has a number of methods some public methods and private methods. type TAuth = class(TDataModule) private procedure PrivateMethod; ...
6
votes
3answers
111 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?
6
votes
1answer
151 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 ...
6
votes
4answers
235 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 ...
6
votes
3answers
663 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, ...
6
votes
2answers
728 views

Data-driven DUnit testing

The way DUnit normally works is you write some published methods, and DUnit runs them as tests. What I want to do is a little different. I want to create tests at run time based on data. I'm trying to ...
6
votes
6answers
965 views

How to make Delphi DUnit test fail when TSQLConnection.Connected = true

When using Delphi IDE, it will silently change SQLConnection.Connected to "true" when populating field or table lists in various properties. Since I don't want to release with Connected = true, I ...
5
votes
2answers
163 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
2answers
75 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
1answer
896 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 ...
4
votes
5answers
428 views

How can I test a Singleton class with DUnit?

Or it's better to use another Design Pattern?
4
votes
1answer
753 views

How can I enable the memory leak tracking with FastMM in DUnit?

In the GUI test runner, the menu items for memory leak checking are inactive (grayed out). Is there a special switch I have not found yet to activate them? Using DUnit 9.4 (from Delphi 2009 or from ...
4
votes
3answers
479 views

Comparing issues in DUnit CheckEquals with Currency Field Values

I'm comparing some currency values in DUnit but it is not working at all on my machine (work on others, but not on mine). An example: CheckEquals(16.65, SomeCurrencyFieldValue); Raises: expected: ...
3
votes
1answer
140 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 ...
3
votes
4answers
306 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 ...
3
votes
1answer
140 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 ...
3
votes
5answers
168 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. ...
3
votes
3answers
786 views

Unit-testing Delphi data modules

If all the business logic is present in a datamodule (TSQLDataSets and TDataSetProviders) how would you refactor the code to make the application more appropiate for unit testing?
2
votes
1answer
100 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 ...
2
votes
2answers
155 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. ...
2
votes
2answers
165 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 ...
2
votes
1answer
74 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 ...
2
votes
2answers
673 views

DUnit Testing in a Midas/DataSnap project

How does one setup DUnit Testing in a Midas/DataSnap project in Delphi 2006 Edit How does one set up a Dunit Test into a TRemoteDataModule The project wizard in Delphi 2006 does not work with ...
1
vote
3answers
302 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, ...
1
vote
2answers
225 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 ...