Tagged Questions

0
votes
1answer
24 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 …
0
votes
1answer
33 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
3answers
64 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
2answers
30 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 …
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() …
0
votes
1answer
27 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 …
1
vote
4answers
137 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 …
1
vote
3answers
142 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 …
2
votes
3answers
72 views

Unit testing with Oracle

Does anyone have any frameworks/apps/methodologies for creating Unit tests with Oracle?. I'm using Oracle 11g. I also have Team Foundation Server installed, where we do all our other development work …
6
votes
7answers
117 views

Should code coverage be used as a “Milestone” that can block a project’s progression?

I am a development manager on a project with a painfully low unit test code coverage and we are definately feeling the weight of the "techincal debt" in the legacy code in our system. My question is …
0
votes
1answer
30 views

Keep getting gcov error when trying to run lcov in Windows command line

Hi all: I was wondering what else is actually needed in order to run lcov in windows command line? Every time when I run perl lcov, I always get a reminder or errors similar to the following: …
1
vote
2answers
40 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 …
1
vote
1answer
29 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. …
2
votes
1answer
40 views

Unit Testing An Extension Method on HtmlHelper

I have an HTMLHelper extension method that outputs HTML to Response.Write. How best to unit test this? I'm considering mocking the HtmlHelper passed into the method, but am unsure as to how I should …
0
votes
2answers
26 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 2 3 4 5 195 next
15 30 50 per page