0
votes
3answers
29 views
C# Unit Test Generation
I know it is possible for VS 2008 to generate unit test code to test C# classes, but I cannot find the right sequence of mouse clicks to generate the code. Any help?
0
votes
1answer
17 views
Django: Test client’s context is empty from the shell
I cannot access the context attribute of an HttpResponse object from ipython. But the unit test accesses context.
Here is the unit test. The test run passes properly:
from django.test import Client, …
1
vote
1answer
32 views
Under what circumstances do Python unittests fail to run?
I have a standalone Django app that I'm working on right now. You can see the code at Github. In one of the edits, I introduced an error that caused the source tree to be deleted. I reset to an …
1
vote
1answer
59 views
Unit testing Android apps and specifically related to db’s
What is the easiest way to create some kind of test harness for Android apps and to be able to visualize (even on the emulator) what is going into the db? I want to test things like constraints, look …
0
votes
2answers
33 views
How can we decide which testing method can be used?
i have project in .net , i want to test it.
But i dont know anything about testing and its method.
how can i go ahead with testing.
which method is better for me for begining?
Is there anything …
0
votes
1answer
9 views
Run mbunit 3.1 tests in resharper 4.5
I have earlier used mbunit 2 and with this plugin I could get my tests to run in the resharper test dialog.
Now with mbunit 3.1, I read that I didn't need any external plugin. So I donwloaded Gallio …
0
votes
3answers
65 views
NUnit Unit Test has “ExpectedException” but still failing on exception
I have a unit test that is failing because a System.ArgumentException is being thrown, even though I am expecting it and it's deliberate behaviour - what have I missed?
[Test]
…
0
votes
1answer
28 views
Using Groovy MetaClass to overwrite Methods
I have a POJO that uses a service to do something:
public class PlainOldJavaObject {
private IService service;
public String publicMethod(String x) {
return doCallService(x);
}
public String …
2
votes
4answers
48 views
is it possible to ignore a fatal error in PHP?
I understand the significance of the term 'fatal error', but I want to write a test class like this (disgustingly simplified):
class tester {
function execute() {
if( @$this->tryit() …
1
vote
3answers
143 views
my class has 30 properties, unit testing is a pain no?
My class has like 30-40 properties, and I really want to unit test.
But I have to create a moq instance (many of them, with different combinations etc).
Is there an easy way? This is real work!
My …
1
vote
2answers
42 views
Have ruby Unit::Test speak the results of the test
I've been using the built-in OSX 'say' command to signal the end of long running tests. It's easy and convenient.
I'd like to make it speak the last line of the results which says "6 tests, 18 …
0
votes
0answers
21 views
Testing subpackage modules in Python 3
I have been experimenting with various uses of hierarchies like this and the differences between absolute and relative imports, and can't figure out how to do routine things with the package, …
0
votes
4answers
147 views
Who are the unit testing professional masters in your language? [closed]
Who are the people with major contributions in this area and who are the professional masters in your opinion?
I can think of Kent Beck for example as one who contributed a lot to unit testing and …
0
votes
2answers
27 views
Mocking - setting a property before calling the constructor
In RhinoMocks or Moq, can properties on an object be set before the constructor is called?
I'm trying to test a method.
The class containing the method has some code in it's constructor which …
1
vote
1answer
30 views
Testing the internals of a method with RhinoMock or Moq
Quite new to this mocking thing, I have a couple of questions.
Correct me if I'm wrong:
Mocking does not initialize the real method i.e. Mocking will not actually call the constructor of your class. …
