The .NET framework is a software framework (designed mainly for the Microsoft Windows operating system). It includes an implementation of the Base Class Library (BCL), Common Language Runtime (CLR), and Dynamic Language Runtime (DLR). It supports many programming languages, including C#, VB.NET, F# ...
7
votes
3answers
175 views
USB storage emulator
I need to emulate insertion and removal of SD cards to write tests. What is the best way/tool to implement it in .NET?
4
votes
2answers
656 views
Writing automated tests for System.Web.HttpApplication
I am currently using Moq to write automated tests for System.Web.HttpApplication in C#:
public FakeHttpApplication CreateBaseMocks()
{
MockContext = new Mock<HttpContextBase>();
...
3
votes
1answer
248 views
Using FitNesse with .Net across multiple servers
My previous work involved writing embedded Linux code. We used a couple of the embedded devices in a test harness, a Linux PC and the Windows Perforce repository. The Linux PC ran an instance of ...
2
votes
4answers
395 views
Good resource on how to write dot net unit test cases?
I am looking for good resources on how to write good unit test cases in C#/Dot Net. Books, resources on the net or simply good advises. In particular the unit cases should give good code coverage and ...