Tagged Questions
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 ...
8
votes
3answers
443 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
2answers
665 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
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
662 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,
...
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
5answers
428 views
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
3answers
207 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 ...
3
votes
3answers
785 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 ...