¡@

Home 

c# Programming Glossary: mbunit

How to detect when application terminates?

http://stackoverflow.com/questions/1372123/how-to-detect-when-application-terminates

e.g. when running classes with unit testing frameworks MbUnit with TestDriven.NET . System.AppDomain.CurrentDomain.UnhandledException.. System.AppDomain.CurrentDomain.UnhandledException MbUnit running inside TestDriven.NET passed test graceful exit System.AppDomain.CurrentDomain.DomainUnload.. System.AppDomain.CurrentDomain.DomainUnload Finalizers MbUnit running inside TestDriven.NET failed test unhandled exceptions..

Unit Testing File I/O

http://stackoverflow.com/questions/1528134/unit-testing-file-i-o

list . In this tutorial I'm showing how to do testing with MbUnit but it's exactly the same for NUnit. Your test is going to look..

.NET Unit Testing packages?

http://stackoverflow.com/questions/1760/net-unit-testing-packages

for the pricey versions of Visual Studio. There's also MbUnit . It's like NUnit but has nifty features like RowTest run the..

How do I get the path of the assembly the code is in?

http://stackoverflow.com/questions/52797/how-do-i-get-the-path-of-the-assembly-the-code-is-in

of whether the testing dll is run from TestDriven.NET the MbUnit GUI or something else. Edit People seem to be misunderstanding.. The three suggestions so far fail me when I run from the MbUnit Gui Environment.CurrentDirectory gives c Program Files MbUnit.. Gui Environment.CurrentDirectory gives c Program Files MbUnit System.Reflection.Assembly.GetAssembly typeof DaoTests .Location..