Entity Framework Advanced

Our client liked first version of Student application, and asked if we can extend it by adding new features. Students should get access to every course. Additionally teachers should be able to give them assessment. Every marks should have weight, so Exam marks will be the most important and homework mark less. Client said that…

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