Integration Test – Compendium

It’s second time we’re going to talk about Integration tests, previously I wrote about basics. This time more about how to write IT. Before we start writing tests we need to decide what parts of application we’re going to test. There are 3 possibilities. It’s important to mention that IT like that are very similar…

Read More

Unit Testing compendium

I often hear developers saying they’d like to write tests or when was the last time they wrote unit test. That’s why I decided it’s good idea to write post about “how to” unit testing. You’ll learn how to write tests with good practices, how to make tests independent from another classes. I’ll show you…

Read More

Test Driven Development

Do you still hate testing? If you’re here, that mean you don’t hate it any more, or you’re still not convinced, because you feel like you’re wasting a lot of time writing useless tests. Today I’ll show you great way to write meaningful tests and clean, testable application code. Unfortunately I can’t say it will…

Read More

Integration tests

Previously we were talking about the most important kind of tests for developers, unit tests. There is one more kind of tests that developers should write, integration tests. I’ll describe what Integration Tests are and why you would want to write them, finally we’ll compare them to Unit Tests. After that post you’ll know when…

Read More

Unit Tests

Do you like testing? Answer for this question may differ depending on the experience. Young developers hate testing, I’ve been there, done that. I wrote my first test at my first job, one year after I’ve started learning C#. For long time I didn’t see a point in writing tests, but I did it, because…

Read More