Tagged Questions
25
votes
2answers
2k views
What is your favorite Delphi mocking library?
I want to start using mock objects on my Delphi projects.
After a quick google I've found those:
Delphi Mock Wizard
PascalMock
So my question is what one is your favourite and why?
8
votes
2answers
191 views
Android unit test using ant with library project
It seems that also the latest android SDK tools still don't properly support testing of applications that contain linked library projects.
I have a project with the following setup:
TestLib (android ...
3
votes
1answer
96 views
C++ unit test for testing performance (synthetic benchmark)
is there any library just like unit testing library, but instead of testing for correctness, its testing the performance of such functions, the output is execution time, cpu instruction count, ...
3
votes
5answers
124 views
C# library to automatically generate values for unit tests
I've read about a library that generates auto values for usage in unit test but could not find it. Basically, what I want was instead of:
[Test]
public void Test()
{
int x = 2;
int y = 5;
...
3
votes
4answers
750 views
Unit Testing Flex/Flash Libraries in FlashBuilder
For a normal Flash/Flex application I would include my Unit Tests in my application project (perhaps in a tests source folder alongside my main src folder). I'd then have two application entry points: ...
2
votes
0answers
59 views
How to do algorithm visualization?
I am looking for an algorithm visualization library/tool that is well documented and you can call from your source code.
I took a look at jhave - example of usage. And I liked it, it seems it has ...
2
votes
2answers
247 views
Is there an interface wrapper around the Task Parallel Library so that I can swap it out for unit testing?
I asked this question a while ago. I now know it is a Bad Idea and that encapsulating the scheduling and running of tasks should be abstracted so that one can pass in a synchronous scheduler from ...
2
votes
4answers
473 views
Best Practices for how to include unit tests in a library
I'm working on a general code library for ActionScript 3.0 called as3lib which includes several extensions to the core API and some useful functions. I've written several unit tests (using FlexUnit) ...
2
votes
2answers
698 views
How to organize unit testing of a library project in Xcode?
I'm not yet a fan of integrated development environments, but I'm trying to overcome my prejudices and learn Xcode. (Eclipse/CDT is next; I couldn't get that to work for me either when I tried last ...
1
vote
1answer
25 views
How to clean and build a library before debugging another project in codeblocks?
In the codeblocks IDE I have now a main project which creates a libmyclasses.a
Now I'm testing the main project via an additional projet where I'm using unittest++. This project compiles and all ...
1
vote
0answers
36 views
How to Test an iOS Library Which Is Using UIKit
I would like to create a library for iOS applications which uses UIKit. Furthermore I would like to create unit tests for this library. Unfortunately my tests do not work because of UIKit ([UIFont ...
1
vote
2answers
169 views
How to unit test administrator-only functionality?
The design of my application is that standard user operations run first (and produce interested information even if the user cannot proceed) and then optionally offers to make some system changes ...
1
vote
1answer
247 views
ActivityInstrumentationTestCase2 and android library project: resources fail to load
I have the following setup:
LibProjectWithActivity - an android library project which contains PreviewActivity
AppProject - usual Android Project which uses LibProjectWithActivity
AppProjectTest - ...
1
vote
6answers
381 views
What are the best practices regarding unit testing a library/framework?
Context
I'm struggling to write a set of unit-tests for a library/framework I'm designing. For context, please, think of my library as an object layer over a hierarchical set of related objects.
...
0
votes
1answer
33 views
Testing a library for android
In the way it works on Eclipse for Android development, yuo can easily :
create a library project, and then no apk will be generated but rather a jar that will be added as dependency to apps that ...
0
votes
1answer
387 views
How to run unittests of an android lib using ant?
I have an android lib project, and an android test project i've built in eclipse.
Now i'm automating the process and i encounterred a problem when trying to run the tests using ant.
When i run the ...
0
votes
1answer
235 views
Test in a C++ static library project with NetBeans
I'm writing a static library in C++ with NetBeans (6.9.1).
I compiled the project main source files with no errors but I don't know how to add a test to it.
I chose File -> New -> C/C++ Tests -> C++ ...
0
votes
1answer
405 views
AS3 Unit Testing Frameworks or Libraries
What are the best unit testing frameworks or libraries for AS3 programming? Specifically for projects that do not involve Flex, only Flash.