1
vote
7answers
183 views
How do I factor code to ease testability?
I am learning about Unit Testing and want to know how to write testable code. But, I'm not sure how to write testable code without making it complex. I'll take famous Car and Engine problem to …
2
votes
1answer
33 views
ASP.NET MVC - test the controller returning different views depending on action method logic
Hi, my controller can return different views depending on action method logic. Action method 'Create' asks service to do some validation and persistence. If validation fails, action method returns …
0
votes
1answer
20 views
junit - share a fixture between testcase
i wonder whether it is possible to have a fixture that can be shared between testcases for instance a hibernate session.
Thank you!
4
votes
9answers
110 views
TDD with unclear requirements
Hello!
I know that TDD helps a lot and I like this method of development when you first create a test and then implement the functionality. It is very clear and correct way.
But due to some flavour …
1
vote
1answer
76 views
Mock framework for C++ [closed]
Possible Duplicate:
Are there any good C++ Mock object frameworks?
I am hoping to develop a C++ project using TDD. Please, tell me what is the best Mock Framework available to c++? And Why?
2
votes
4answers
82 views
Advice on starting to mentor coworkers
I work in a great company (.net consultancy) with some great devs, but some of the older hands have approached me wanting me to help them become "more modern" in their approach to software …
19
votes
17answers
704 views
TDD vs. Unit testing
My company is fairly new to unit testing our code. I've been reading about TDD and unit testing for some time and am convinced of their value. I've attempted to convince our team that TDD is worth …
0
votes
2answers
47 views
Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong?
So, I've spent a couple of hours first trying to "fix" this myself and then Googling like a madman but didn't find anything that would've helped so now I'm here.
Basically I have a custom Panel …
0
votes
2answers
43 views
Database free NUnit tests
How can I test my code (TDD) for standard CRUD operations without having a database. Is it possible to achieve such level of isolation so that my code is database independent.
Thanks a lot guys.
1
vote
8answers
147 views
Why using Integration tests instead of unit tests is a bad idea?
Let me start from definition:
Unit Test is a software verification and validation method in which a programmer tests if individual units of source code are fit for use
Integration testing is the …
1
vote
5answers
59 views
How to unit test the sorting of a std::vector
I have never used unit testing before, so I'm giving CxxTest a go. I wrote a test to check if a function correctly sorts a std::vector. First I made sure the test failed when the vector wasn't sorted, …
2
votes
6answers
58 views
Remotely Track the Current Branch in Git
I'm moving my continuous testing to a dedicated server (autotest slows down my local laptop too much). What I'd like is for my testing server (which happens to be running CruiseControl.rb) to be …
6
votes
4answers
53 views
Test-driven development with ASP.NET MVC - where to begin?
I've read a lot about Test-Driven Development (TDD) and I find the principles very compelling, based on personal experience.
At the moment I'm developing a web-site for a start-up project I'm …
2
votes
5answers
135 views
Is there a list of famous software products that do and do not do testing?
I would be interested in looking at a list of projects that did and did not do unit testing, and other forms of regression testing, to see how those companies turned out.
All test infected developers …
5
votes
1answer
367 views
Silencing Factory Girl logging
Just to clear the air, I am not some cruel factory master trying to silence working ladies. I am having a very annoying problem where when using Thoughtbot's factory girl in my specs, every time …
