All Questions
4 questions
-2
votes
2
answers
3k
views
Best practices around writing testable extension methods
I’m currently working in C# and I’d like to write and extension method against a type. There is a small amount of repeated logic between classes surrounding JSON deserialization, using the ...
10
votes
4
answers
12k
views
Cleanup & Arrange practices during integration testing to avoid dirty databases
I'm coding tests in C# and I settled with this structure:
try
{
// ==========
// ARRANGE
// ==========
// Insert into the database all test data I'll need during the test
// ====...
4
votes
2
answers
1k
views
Software development - The industry & general trends / Bad practices [duplicate]
I am a Web Developer and part of a small team working on an abundance of projects. This is my first "actual" real company after graduating with a degree in computer Science and I have about 2 years ...
88
votes
11
answers
19k
views
Is it a bad practice to modify code strictly for testing purposes
I have a debate with a programmer colleague about whether it is a good or bad practice to modify a working piece of code only to make it testable (via unit tests for example).
My opinion is that it ...