0
votes
1answer
18 views
How do I run a function before each test when using qUnit?
What is the equivalent of nUnits [SetUp] attribute for qUnit?
2
votes
9answers
75 views
What is the best tool for Test driven Development using asp.net 2.0?
We are using Asp.Net 2.0 and planning to move to TDD so that middle tier can be developed and tested while others in the team take care of UI and DataBase area.
Can anyone kindly …
2
votes
2answers
29 views
File/Registry Test Case for NUnit
I am new (as of today) to NUnit and TDD. However, I am very interested in the technique and I am trying to learn. I have a test case I would like to read from a file if it exists …
0
votes
3answers
46 views
How to test drive a networking application with custom protocol?
I'm currently developing two Java networking applications for school projects. One over TCP and the other one over UDP. In both I have to implement simple custom protocol.
Even th …
5
votes
7answers
98 views
Which objects to mock when doing TDD
When creating methods, should every object instantiated inside that method be passed in as a parameter so that those objects can be mocked in our unit tests?
We have a lot of meth …
9
votes
9answers
326 views
Eat, Sleep and Breathe Unit Testing/TDD/BDD
I do write unit tests while writing APIs and core functionalities. But I want to be the cool fanboy who eats, sleeps and breathes TDD and BDD. What's the best way to get started wi …
3
votes
2answers
85 views
When an operation needs to pass more than just the result, do you tuple/throw/or getContextual?
I’m trying to refactor some “sending out an email” code by dividing the steps (validate, attach related content, format, send) into separate classes that can be more easily tested, …
3
votes
2answers
54 views
TDD/BDD in particular for a Rails application
How granular should one get when using TDD/BDD methods for developing an application? In particular with regards to a Rails application.
Would you test for every single field ind …
23
votes
12answers
767 views
Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC
I have a fairly slick approach to doing C# development using the above tools/methodologies. Specifically i follow the "Jeffrey Palermo Agile Bootcamp" onion architecture. I feel …
5
votes
4answers
113 views
Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL
I have looked on the web and the discussions/examples appear to be for traditional software development. Since Verilog and VHDL (used for chip design, e.g. FPGAs and ASICs) are si …
1
vote
0answers
20 views
BDD both from business level and application level
In my current project I want to use Behavior Driven Development (BDD), on both levels of business requirements application level tasks.
Is it all right to wrap (group) my internal …
1
vote
3answers
62 views
Moq - How to verify that a property value is set via the setter
Consider this class:
public class Cotent
{
public virtual bool IsCheckedOut {get; private set;}
public virtual void CheckOut()
{
IsCheckedOut = true;
}
publi …
4
votes
6answers
215 views
Is behaviour driven development about design or analysis?
The more I read about BDD and how it is supposed to be improved TDD the more confusing it all seems to me. I've found quotes from expert that say it's about design, but also from o …
0
votes
3answers
84 views
TDD, Mocking, dependency injection and the DRY principle
I've got a controller class which accpets multiple parameters in the ctor which gets injected at runtime.
Example:
public ProductController(IProductRepositort productReposito …
3
votes
5answers
112 views
Unit Testing a large method
Following Test-Driven Development that is.
I've recently implemented a algorithm (A*) that required a clean interface. By clean all I want is a couple of properties and a single …
