unit-testing
Include XML as an embedded resource for unit testing?
I have objects that gets initialized by serializing an XML file. I\'m thinking of including the test data in the test project as an embedded resource instead of \"hard-coding\" the data in the test m[详细]
2023-04-11 16:31 分类:问答Cobertura makes my unit test fail. How to solve it?
I have a java class in a java project. I wrote 3 test cases for it with junit. The test cases are successful if I run them in E开发者_C百科clipse or mvn test in cmd. But every time I run them with mvn[详细]
2023-04-11 16:31 分类:问答Optimal file structure organization of Python module unittests?
Sadly I observed that there are are too many ways to keep your unittest in Python and they are not usually well documented.[详细]
2023-04-11 15:32 分类:问答Can I patch a Python decorator before it wraps a function?
I have a function with a decorator that I\'m trying test with the help of the Python Mock library. I\'d like to use mock.patch to replace the real decorator with a mock \'bypass\' decorator which just[详细]
2023-04-11 14:47 分类:问答OCMock testing the address of a struct
I have some code I want to test that is passing around the address of a struct: MyObject myObject = ...;[详细]
2023-04-11 14:11 分类:问答MVC Unit Testing a controller
I have a controller with the Authorize attribute: public CustomerController:Controller { [Authorize] public ActionResult GetCustomer(int id)[详细]
2023-04-11 14:10 分类:问答Python Mock object with method called multiple times
I have a class that I\'m testing which has as a dependency another class (an instance of which gets passed to the CUT\'s init method).I want to mock out this class using the Python Mock library.[详细]
2023-04-11 13:53 分类:问答Stored procedures and unit testing
Does anybody know of a framework (or methodology) to unit test stored procedures just using SQL and be able to produce a reasonable report as to wh开发者_高级运维at has passed and what has failed (som[详细]
2023-04-11 12:58 分类:问答Questions about TDD
Environment In my solution I have three projects, they are: Web (Asp.net MVC4) Model (Class library) Test (Test project)[详细]
2023-04-11 08:11 分类:问答Unit Test? Integration Test? Regression Test? Acceptance Test?
Is there anyone that can clearly define these levels of testing as I find it difficult to differentiate when doing TDD or unit test开发者_JAVA百科ing. Please if anyone can elaborate how, when to imple[详细]
2023-04-11 07:36 分类:问答