Unit testing is a method by which individual units of source code, sets of one or more computer program modules together with associated control data, usage procedures, and operating procedures, are tested to determine if they are fit for use.
0
votes
2answers
15 views
IP-based city detection (and testing)
What is the best, most efficient way to test city detection? I have IP-based location detection implemented via www.maxmind.com, but now I'd like to test it's accuracy.
I know there are various ...
0
votes
0answers
5 views
Trouble Adding OCUnit Testing Framework to Existing Xcode Project
I am trying to integrate Unit Tests in my current Xcode project using the OCUnit Testing Framework. I have been following Apple's documentation:
...
0
votes
1answer
30 views
Python unittest report passed test
Hello I have a test module like the following under "test.py":
class TestBasic(unittest.TestCase):
def setUp(self):
# set up in here
class TestA(TestBasic):
def test_one(self):
...
2
votes
1answer
17 views
Can python coverage display results hierarchically?
I use the Python code coverage tool to monitor and measure our testing coverage. I'm now publishing the results internally, using coverage's excellent html report generation. I'd like to change the ...
1
vote
2answers
28 views
Python unittest call function when assertion passes
I can't find a way to do_something() when the assertion in a test passes. For example:
def test_one(self):
self.assertEqual(1,1, "Did not match")
That test will print "Did not match" if ...
0
votes
2answers
32 views
Injected constructors, unit testing and best practices
This is a slightly esoteric questions about how public to make constructors when using an IoC container. I'm using java, Guice and Junit4, but I'm sure this question is more general.
Under Best ...
1
vote
0answers
14 views
Python Unit testing backup statics
I'm trying to unit test in python but I have troubles with statics attributes.
The problem is: Python doesn't backup static attributes which entails that a test acts unpredictable. Here is an example ...
0
votes
0answers
20 views
boost_check_equal_collections for double arrays
I have a question with BOOST_CHECK_EQUAL_COLLECTIONS. It is straightforward to compare the calculated array with the expected one if the data type of the array happens to be int or char. However, when ...
0
votes
1answer
32 views
Odd test method failure - Windows security
I'm probably being blind, but this has me stumped. The following unit test fails on my local machine (but not on our build server) with a System.UnauthorizedAccessException.
[TestMethod()]
...
0
votes
1answer
17 views
How to unit test Angular controller with $scope.$on?
I have a controller with an event listener in my Angular app, defined as follows.
angular.module('test').controller('TestCtrl', function($rootScope, $scope, testService) {
[...]
...
-2
votes
3answers
33 views
Justification of test cases
Hi guys I have been asked to write a justification of my test cases that traces back to business rules, data dictionary and data volume requirements.
but the thing is I have no idea how to write a ...
2
votes
1answer
23 views
Run JUnit tests automatically in Jenkins without maven or ant
I am currently setting up a continuous integration tool with Jenkins. I would like to run JUnit tests everytime a build is made. My problem is that none of the projects that will be tested use maven ...
1
vote
2answers
24 views
Custom hamcrest matcher that works with “not”?
I have some class (say, Entity).
I want to be able to
1) test that an instance of that is "valid", using some custom code to decide that
2) also test that an instance is not valid, ideally using ...
0
votes
3answers
58 views
Null reference when passing an array to a stored procedure
I get the following error:
System.NullReferenceException: Object reference not set to an instance of an object.
When I try to run this unit test:
[TestMethod]
public void ...
1
vote
1answer
33 views
UnitTestIsolationException: Throws Exception while running Shims test in Release/Debug mode
I am trying to run this unit test using Microsoft Shims, but it throws me exception in Shims.Context.Create(); method.
Environment: VS 2012, Win2K8 R2
namespace MyShimsUnitTest
{
[TestClass]
...
0
votes
1answer
17 views
CodedUITests: Can i cancel a testrun when some requierements in ClassInitialize couldnt reached?
is there a way to cancel a testrun in ClassInitialize()? For example, i start the application i wanted to do some test with in my ClassInitialize() method. If the application couldnt be started i ...
2
votes
1answer
22 views
JUnit exluding base class from tests in Spring context
All my unit tests have the same header with Spring annotations:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:spring/spring-master.xml"})
...
0
votes
3answers
13 views
Equivalence Classes in software testing
I am new to Software testing and I am studying the basic techniques. I read the following problem:
Identify the Equivalence Classes for the following specification: The program accepts five to nine ...
1
vote
1answer
19 views
How to test class with local connection to EJB
I am facing problem with testing class which has implemented some local connection to EJB in the constructor. This connection is used just inside the constructor and sets some private attributes of ...
0
votes
0answers
18 views
Running a Visual Studio macro from within a Unit Test
Is it possible to trigger a macro from within a unit test and get back it's returned value? The macro checks the integrity of certain solution files accessible from the DTE. Using the DTE from within ...
0
votes
0answers
8 views
Automating unit testing for C and Objective C
My code is basically divided into 2 parts. Most part is written in Objective C (using Foundation) and remaining in pure C (Daemons etc). I wanted to add test framework for my project. The framework ...
0
votes
1answer
36 views
Perl testing fake hash reference return
I have a function that returns a Hash reference. The particular function is talking to a resource that has a high latency reply and is run multiple times. Depending on how many times it is called - ...
0
votes
0answers
20 views
How to test provider roles
I am unit testing this role provider. I have a few asserts in the code for my test. I am sure there are more test I could preform. Does anyone have any suggestions for more test for this role of the ...
0
votes
1answer
20 views
System.BadImageFormatException:Could not load file or assembly ⊠incorrect format when trying to install service with installutil.exe
I know i am going to ask duplicate question but my scenario is totally different i think so because when i go to do unit testing with nunit tool of my program then in NUnit this error happen
...
0
votes
2answers
34 views
Testing grails controller that has a bean from src/groovy
I have a class in src/groovy
class Something {
def foo
}
this is in resources.groovy
beans = {
mySomething(Something)
}
In my Controller I use this :
class MyController {
def ...
0
votes
0answers
13 views
Android unit test, super deprecated, replacement?
The android unit testing documents say to test with junit like this
public SpinnerActivityTest() {
super("com.android.example.spinner", SpinnerActivity.class);
} // end of SpinnerActivityTest ...
0
votes
1answer
50 views
How to make a PHP Test suite
Ive been looking around and i didn't find any good information about test suites, could anyone please explain how it should look like.
I found this example:
<?php
require_once 'MyTest.php';
...
0
votes
0answers
16 views
Use JMockit to test the concrete methods of an abstract class
I have an abstract base class that defines both concrete and abstract methods. I'm wondering if there's a way, using JMockit, to mock this type such that I can declare expectations for the abstract ...
1
vote
2answers
23 views
Typemock Isolator - Cannot mock MvcMailMessage
I am using (the latest version of) Typemock Isolator and am attempting to mock the MvcMailMessage class from the MvcMailer library. This class derives from MailMessage which can seemingly be mocked by ...
0
votes
1answer
15 views
Patching os.path.isfile with side_effects not working in list comprehension
I'm attempting to excercise the following method in a Python class:
def find_tests(self):
tests_dir = glob.glob("tests/*")
if not tests_dir:
return None
# Filter out only the ...
1
vote
1answer
17 views
Check if two objects are of same type - Dynamics AX 2012
How to check if two objects are of same type in Dynamics AX 2012 Unit Test.
Like,
AssetProposal::construct(AssetTransType::DisposalScrap) creates an object of type AssetProposalDisposalScrap.
So I ...
0
votes
1answer
30 views
Fake out module including attributes
As a unit test, I would like to be able to test that the imports defined in a bunch of GUI screens make sense programatically. I don't want to have to execute anything, just
import main_screen
and ...
0
votes
0answers
13 views
Arquillian and Selenium in mixed Container/Client mode
i am reading the tutorial on Arquillian's website
http://arquillian.org/guides/functional_testing_using_drone/
Under the paragraph of "Enabling Client Mode" they state that it is possible to mix ...
1
vote
1answer
47 views
Php unit-testing sessions
Ive been looking around on how to test sessions.. iven't really found any thing helpful...
$user_id = $_SESSION['user_id'];
$login_string = $_SESSION['login_string'];
$username = ...
0
votes
0answers
12 views
iOS Ghunit - Unit test hangs when running on CLI and using UIPasteboard
I'm developing some unit tests for an iOS app, using GHUnit. The tests run fine in the iOS simulator, but I find it difficult to run them from the command line.
I followed the official documentation ...
0
votes
2answers
51 views
Mocking a list or List of Mock Objects
I have a class that uses a list of objects. How would you mock the list and why? Do you mock the List so that it returns Mock Objects when a list method is called. Or do you create an instance of the ...
0
votes
1answer
31 views
Mockito - test method without inner method
I have the following class
public class EmailManager{
protected String getEmailContent(String content,String image){
String result = content.toPrettyLook(); //this is an inner method
...
2
votes
1answer
38 views
Setup Moq to increment value when method called
I've got a POCO which im saving, like this:
_myRepo.Save(somePoco);
_myRepo is mocked, e.g:
var myRepo = new Mock<IRepo>();
When that Save method is called, i want to set somePoco.Id to 1.
...
0
votes
0answers
13 views
How to see test error messages on TFS Hosted
My project is running in TFS Online (visualstudio.com) and at one moment a bunch of tests failed on TFS. Usually in such situations it was possible to reproduce the fail on my local machine, see the ...
1
vote
1answer
25 views
Handling several event listeners
Update: here's a fiddle of my problem. The tests pass once, and fail the next time:
http://jsfiddle.net/samselikoff/hhk6u/4/
The problem is departments has events.on("userSet:company"), so both ...
2
votes
1answer
42 views
C++ Testing Framework Recommendations
I am new to unit testing and trying to set up a unit testing framework for a legacy C++ project. There are several older questions on SO about unit testing frameworks for C++ but they seem to be at ...
0
votes
1answer
13 views
Select all matching elements in PHPUnit Selenium 2 test case
It is simple to select an element by specifying its class, in PHPUnit Selenium 2 test case:
$element = $this->byClassName("my_class");
However, even if there are two items of my_class, the ...
0
votes
1answer
40 views
Junit/Mockito - wait for method execution
In my application I use observer pattern for some operations and I want to test them in unit tests. The problem is that I don't know how can I test observers using junit/mockito/something else. Any ...
0
votes
2answers
37 views
Mockito method returns null
I looked in the forum but couldn't find why this would happen
I have
public class AImpl implements A{
@Autowired
B bImpl;
protected void doSomething(){
String s = "test";
...
2
votes
1answer
30 views
Code coverage with mocha
I am using mocha for testing my nodejs application. I am not able to figure out how to use its code coverage feature. I tried googling it but din't find any proper tutorial. Please help.
0
votes
5answers
67 views
Bash shell: How to test for failure of mkdir?
I'm writing a Bash shell script and want to do robust error checking. The exit status code for mv to make it fail is easy to test, by just trying to move a file you know doesn't exist.
I have to also ...
0
votes
1answer
26 views
Loading managed assemblies in a unit test project seems to slow Visual Studio 2010 down
I am loading multiple managed assemblies in a unit test. The assemblies are from within the solution and not third party, not that it matters. I notice that Visual Studio tends to increase memory ...
0
votes
1answer
32 views
MS Visual Studio Unit Tests take forever to close - even if there's no code in the test
Why would this be happening? I have a no code in my test:
[TestClass]
public class ApiClientTest
{
[TestMethod]
public void ApiTestSampleUseCase()
{
TestCleanup();
}
...
0
votes
1answer
82 views
Testing modular AngularJS w/ Jasmine & Karma
Struggling to get unit testing set up in Jasmine/Karma. I have a controller with a service dependency, and that service has another service dependency. I am not organizing my modules by type ...
0
votes
0answers
33 views
RobolectricContext missing for gradle based project
with v2.0 of robolectric and a gradle based project I am facing the problem of a missing RobolectricContext for the runner. It works with
testCompile group: 'org.robolectric', name: 'robolectric', ...



