I\'m running tests with TD.Net and Gallio. I\'ve got .Net 4.0 installed, but I want to use开发者_如何学编程 the 2.0 runtime. I\'ve put <supportedRuntime version=\"v2.0.50727\"/> in my test assem
I have created below simple testcase in Delphi Prism. When I run the testcase using Gallio Icarus, it returns a This test is not supported by any available test framework.
I have a number of unit tests which rely on the presence of a csv file. They will throw an exception if this file doesn\'t exist obviously.
When I use the NUnitExtension.RowTest.dll it ignores my tests in Resharper/VS2008 and Gallio Icarus.Does anyo开发者_JS百科ne have a config that works?
For our webapp testing environment we\'re currently using watin with a bunch of unit tests, and we\'re looking to move t开发者_如何学Co selenium and use more frameworks.
We recently updated to Visual Studio 2010, and as part of our upgrade we started using Gallio 3.2 prerelease builds. Everything runs fine in Visual Studio (through resharper) but I\'m having problems
I can use the following code to attach a log file to my Gallio 3.2 acceptance test report: TestLog.AttachPlainText(\"Attached log file\", File.ReadAllText(path));
I have searched the internet and found a few references saying that Gallio and NbU开发者_运维问答nit can run within TeamCity as part of the build process.
From MBUnit I am trying to check if the values of two objects are the same using Assert.AreSame(RawDataRow, result);
I am trying to compare 2 Dictionary objects for equality in MbUnit 3.1 like so Assert.AreEqual<FieldList>(expectedOutputFieldList, actualOutputFieldList);