NBi is a testing framework (add-on to NUnit) for Business Intelligence and Data Access. The main goal of this framework is to let users create tests with a declarative approach based on an Xml syntax. By the means of NBi, you don't need to develop C# or Java code to specify your tests! Either, you don't need Visual Studio or Eclipse to compile your test suite. Just create an Xml file and let the framework interpret it and play your tests. The framework is designed as an add-on of NUnit but with the possibility to port it easily to other testing frameworks.
Currently trying to assert the rowcount which should return as less than equal to 45. However the number returning is 47. In this scenario the should be marked as failed and not error. Am I missing something in this case?
NBi.NUnit.Runtime.TestSuite.My fifth test:
NBi.NUnit.Runtime.CustomStackTraceAssertionException : Expected: count of rows returned by the query is less than or equal to 45m
But was: 47
Actual result-set returned by the query:
Result-set with 47 rows
Due to limitations of NUnit Framework 2.x, all falures are reported as Errors. Won't fix before moving to NUnit 3.x, where I hope this limitation is removed.
Currently trying to assert the rowcount which should return as less than equal to 45. However the number returning is 47. In this scenario the should be marked as failed and not error. Am I missing something in this case?
NBi.NUnit.Runtime.TestSuite.My fifth test: NBi.NUnit.Runtime.CustomStackTraceAssertionException : Expected: count of rows returned by the query is less than or equal to 45m But was: 47
Actual result-set returned by the query: Result-set with 47 rows
37 (of 47) rows have been skipped for display purpose.