Skip to main content

Posts

Showing posts from January, 2015

Writing and deploying Windows Service in C#

What a Windows Service is Enables you to create long-running executable applications that run in their own windows session. Can be automatically started when the computer boots, can be paused and restarted without any user interaction. Easily installable by running the command line utility InstallUtil.exe and passing the path to the service's executable file.

Unit Testing with Visual studio 2012 Fakes

With Visual studio 2012 Ultimate edition Microsoft has shipped new Faking framework which enable developer to isolate their unit tests from their environment. Now it’s time to understand them.

Unit Testing

What is Unit Testing? Unit testing means “Testing smallest logic that we can test isolating from other”. Bit technical definition, let’s try to make it simple.