All Questions
10 questions
0
votes
3
answers
233
views
Is is worth the time to create a list of manual regression tests for a legacy application?
I am part of a new dev team that is assigned to work on a legacy app. The app currently has no regression or automated unit, integration and system tests.
Due to technical debt and convoluted ...
-2
votes
1
answer
380
views
Unit Tests - correct approach to test system with multiple layers
I'm wondering about Unit Tests. Let say i got a code ( in C#, but language is not important here):
public class SOT: ISOT
{
List<string> _internalCollection = new List<string>();
...
1
vote
1
answer
277
views
NUnit specify TestCaseAttribute on implementation or create a test method
Based on this question about the correct usage of nUnit's TestCaseAttribute, I was wondering whether to specify the test case directly on the implementation or create test methods (as when using ...
8
votes
3
answers
4k
views
Is it right to skip unit testing and go straight writing integration tests if there's no point of testing the unit in isolation?
According to Martin Fowler's article,
https://martinfowler.com/bliki/TestPyramid.html
It is advisable to write more unit tests than integration tests. Does this mean ideally that every unit of work ...
0
votes
3
answers
274
views
How to write testcases for a piece of logic? [closed]
I want to learn how to write testcases for a piece of logic like unit tests. Now I am not concerned about any specific framework or language, just wanted to know how can I get learn to write input-...
18
votes
4
answers
4k
views
How to do Test Driven Development
I have just 2+ years of experience in application development. In those two years my approach towards development was as following
Analyze requirements
Identity Core component/Objects, Required ...
1
vote
2
answers
551
views
Testing Framework Selection: xUnit family theory
Background:
I am familiar with xUnit family frameworks and have had experience with (shunit2, PhpUnit and simpletest). I am currently trying to find a testing framework for C++. I did a quick search ...
15
votes
2
answers
1k
views
Should I refactor my unit tests when I extract a class out of the System Under Test?
I wrote this class that does a few things (perhaps this is a violation of the Single Responsibility Principle). I realize now that some other part of the project needs a piece of that logic and the ...
3
votes
2
answers
3k
views
Returning a mock object from a mock object
I'm trying to return an object when mocking a parser class. This is the test code using PHPUnit 3.7
//set up the result object that I want to be returned from the call to parse method
$...
31
votes
5
answers
3k
views
Test driven development - convince me! [closed]
I know some people are massive proponents of test driven development. I have used unit tests in the past, but only to test operations that can be tested easily or which I believe will quite possibly ...