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
31 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', ...
0
votes
2answers
34 views

Two public method calls a private method

I heard some one said that it's better to write Junit test for a private method via a public method. But in this case, I should test private method to avoid the duplicated code. Is it good approach?
0
votes
4answers
32 views

One Test-Class per method?

since today I have used the pattern to create one test class per class. For example the class "Foo" with the methods "DoSomething" and "DoNothing" had one test class called "FooTests". Now I have ...
1
vote
1answer
21 views

Surpress raise errors during unittesting?

I'm writing unit tests for an api library, however an error (which should be showing, since that test is for failed login) is interrupting the test. Is there a way to silent raised error messages just ...
0
votes
0answers
14 views

Triggering unit test on solution build (VS 2010)

I am new to testing so please bear with the obvious unfamiliarity. I have a solution with multiple projects, configurations and app settings. There is already a compiler directive to warn on ...
0
votes
1answer
54 views

How to test file upload in Grails

I have a controller that takes in a file as part of the parameter. I'm wondering how can I test this? my controller action: def save () { def colorInstance = new Color(params.color) ...
1
vote
1answer
52 views

Scala testing mocking implicit parameters?

I'm having a bit of a tough time trying to understand how to write tests in Scala when implicit parameters are involved. I have the following (short version) of my code and test: Implementation ...
0
votes
1answer
50 views

VS2012 assert helper function - test runner should not track in my function

During testing I have several Assert helper functions specific to the project. For example, I have to often check whether two IEnumerables are equivalent (exactly same content by reference, not ...
1
vote
3answers
156 views

Visual Studio 2012 test categories hierarchy (Test Explorer)

I am testing a quite big project (C#, VS2012), and I need to arrange my unit test in test hierarchy (eg.: now I have 43 test cases). I do really need the hierarchy. I have test categories defined ...
0
votes
0answers
19 views

How to organize and configure tests: unittests and integration

I run into a problem with the configuration of my tests. Current setup: src package1 package2 tests test_package1 test_unit.py test_package2 ... regressionCar test_regression.py There ...
0
votes
0answers
29 views

How to replace file-access references for a module under test

pyfakefs sounds very useful: it "was developed initially as a modest fake implementation of core Python modules to support moderately complex file system interactions, and was introduced Google-wide . ...
0
votes
1answer
21 views

Dynamically generate factory attributes

I want to do following: classes = ["WelcomeMailing", "NoticeMailing", "FeedbackMailing"] #...... FactoryGirl.define do classes.each do |tclass| cl_attributes = ["body", "subject", ...
0
votes
2answers
48 views

AngularJS: test that an external script is effectively loaded

I'm working with an external script (from http://segment.io) and I'm writting an AngularJS module to interact with it. I am wondering how can I effectively test that their script is well loaded ...
0
votes
0answers
16 views

Interacting with an Android notification

I have some app that triggers a notification (using the NotificationManager system service. I'd like to open the notification or click on it automatically somehow, as part of our testing framework. ...
0
votes
1answer
50 views

How to set up a test for a specific php function

Can anyone please help me set up an unit-test for this php code, ive been trying and haven't found a solution yet. I have recieved this code from the developer-team and Im supposed to create ...
-6
votes
1answer
40 views

Why are there no available downloads for pyfakefs? [closed]

pyfakefs mocks Python's filesystem modules, useful for testing. It seems to be quite mature, being "used in over 900 Google Python tests". However, there doesn't seem to be a convenient way to ...
1
vote
2answers
86 views

JUnit 4 vs. TestNG 6

The question is a classic and has been asked several times. But those questions and their answers are a few years old now. So what are the differences of JUnit and TestNG in their current versions? ...
2
votes
2answers
64 views

Unit Testing Job Component C#

I'm trying to bring a legacy project under test. The code was written in such a way that it is generally testable, however some of the third party dependencies were not. I'm trying to wrap my head ...
0
votes
0answers
26 views

Should we always assign nil to instance variables in the teardown method?

I read this (late 2007) blog post and I'm wondering whether we should indeed always assign nil to instance variables in the teardown method. I'm using Ruby 1.9.3, Rails 3.2.13, and minitest-rails, ...
1
vote
1answer
44 views

How can I avoid over-testing with example

I've been trying to start testing my code more, and I thought I would mimic the style of some of the tests that were autogenerated for by me rails scaffolding (I'm using rspec and rails, but my ...
0
votes
1answer
28 views

Python - How to unmock/reset mock during testing?

I'm using nosetests and in two separate files I have two tests. Both run fine when run individually, but when run together, the mock from the first test messes up the results in the second test. How ...
0
votes
1answer
22 views

CakePHP core tests not working on IIS

I'm following the steps (from http://book.cakephp.org/2.0/en/development/testing.html) to set up Testing on a CakePHP install. Viewing the core tests is supposed to be as simple as appending ...
0
votes
1answer
51 views

Unit Test Suite in Python

Can I implement Test Suit as a python class/module so that I have Test Case module and Test Suite module. I want to pass a argument from testsuite to testcase too. Something like this: Test Suite ...
0
votes
0answers
18 views

FTP resume download test case

I am trying to make a ftp downloader which has a functionality of resuming the file download from the point where it has got interrupted using REST(offset) command call . For testing purpose , ...
0
votes
1answer
41 views

Simple Android GUI Test can not find TestClass

I want to test a GUI of an Android App with JUnit3 and the UiAutomatorTestCase class, as described in Google's Documentation. I created a new Android Test Project in Eclipse and added a really simple ...
0
votes
0answers
34 views

Rails 3: unit test works with ruby but not rake

I have the following class in a Rails 3 app: class AssetAttribute < ActiveRecord::Base ... def self.ANNOTATION self.find_by_table_name('annotations') end ... end In another class, I ...
0
votes
2answers
45 views

Use mock frameworks for something else then unit-tests?

Do mock frameworks are just supporting to write unit tests or are there any other cases where a developer would use them? Are there situations where they are useful outside the testing area?
1
vote
1answer
57 views

C++ Mock Frameworks: 'Generic' vs 'Declarative'

I'm recently learning a lot about Mocking Frameworks for C++, but there is one question which I couldn't solve so far: There seem to be 2 different types of mocking Frameworks available (at least for ...
1
vote
1answer
31 views

Automated UnitTesting for several server/php versions on one machine

How do I setup automated unittesting (I use phpUnit) for several PHP versions on the same server? Or if not possible what affordable solutions are there? I deploy my code to several customer servers ...
1
vote
1answer
78 views

Erlang - Eunit setup function doesn't run

I would like to write tests, where setup and cleanup functions don't execute for every single test, but once - at the start of testing and at the end of testing. So i tried this way: ...
1
vote
2answers
47 views

What to be Tested in Layered Dependency Injection

The relative question maybe like this one question. I used a dependency injection as architecture of my application. Then I have created unit testing for it. The injection architecture may be like ...
1
vote
3answers
62 views

test variable title with ID - selenium ide

using selenium IDE i testing my site in some pages i have a link with variable ID ex : ( http://yourorder.com/135046 ) every time user click on this link site take him to process page number ...
2
votes
1answer
49 views

Running all test classes in all projects [duplicate]

I have the following project setup: The application consists of several projects where each project have a test package. These test packages contain the test classes for this particular project and ...
1
vote
1answer
87 views

Testing Django email backend

In my settings.py, I put: EMAIL_BACKEND = 'mailer.backend.DbBackend' So even when importing from from django.core.mail import send_mail, the send_mail function still queues up the email in the ...
0
votes
1answer
43 views

Should I unit test validation code? It seems impractical

I'm learning test driven development and I want to know what I should I do when it comes to test driving validation. Should I create unit tests that test every possible combination of validation ...
0
votes
1answer
36 views

Rspec's include matcher, beetwen Hash and String objects

How can I check with Rspec, if all the fields in a Hash object : {"id"=>5392501, "owner"=>"cainlevy", "name"=>"photor", "url"=>"https://api.github.com/repos/cainlevy/photor", ...
1
vote
1answer
42 views

PHPUnit mock all methods of an abstract class

I have a PHPUnit test case directly deriving from PHPUnit_Framework_TestCase. In a test in this class I need to get a mock for some service object. This service object is of a type defined by an ...
0
votes
2answers
49 views

Testing spring context without xml

I use java based configuration in web application: public class SpringInitializer implements WebApplicationInitializer { @Override public void onStartup(ServletContext servletContext) { ...
1
vote
0answers
88 views

Selenium test cases for input text field is not working

I am new to Selenium IDE and I need help in one particular case. I am trying to create a test case for a module in which, when I enter a text it searches in the database and then give results based on ...
1
vote
1answer
77 views

Writing custom test framework

I'm developing a kind of own unittest framework for external hardware including a testcase runner. The term hardware means, that the tests do not test software on the host - they test implementation ...
0
votes
1answer
40 views

Django user setup for nose tests

I tried seting up a user for nose tests but it doesnot work in global scope defined: from django.contrib.auth.models import User import nose.tools as noz inside a test class defined: def ...
1
vote
2answers
66 views

Django-nose test case gives assertion error when run from management command

test.py # write code to test the views. from django.test import Client # import nose for tests. import nose.tools as noz class TestSettings(object): """ test the nose test related setup """ ...
1
vote
1answer
78 views

Can automation QA/Tester work in SDET profile

Sine two years I've been working in automation testing profile that involves developing test frameworks using selenium,watir,JUnit. I now want to enhance my profile technically. Over a period of time ...
0
votes
1answer
64 views

Test driven development - when/what to test?

I am trying to get started with TDD but right away I am unsure of when and what I should be testing. The first two tasks in a new project I'm working on are as follows. 1) Receive some JSON formatted ...
0
votes
1answer
25 views

why error_log generate a RuntimeException only with phpunit's --process-isolation

i had a few tests which code being tested outputed some error_log information (since i'm testing failures as well, this is expected) e.g. <?php Class X { function dosomething(){ ...
0
votes
1answer
24 views

Issue with SpringJUnit4ClassRunner, H2 db inetgration test

I am trying to write an integration test using h2 db, I am getting an error as "error: cannot access BlockJUnit4ClassRunner" at the line @RunWith() Can any one suggest something please? I have no ...
0
votes
0answers
36 views

How do I get UITableViewCell to initialize correctly in Application Tests?

I have a UIViewController with a UITableView and NSMutableArray. The array will become the data source for the UITableView. I am trying to create tests for this view controller and am having ...
0
votes
2answers
57 views

Automatic software testing

Dear overflow members, I am a guy who want to learn automatic software testing but i cannot decide what interface i want to use (selenium, TestComplete,...) - so i dont know in what language i want ...
0
votes
0answers
16 views

What are the differences between condition and desicion software testing [duplicate]

Let's assume that we have the following pseudocode: 1: PRINT "Hello Stackoverflow" 2: IF $Date = "16-04-2013" AND $Weather = "Sunny" THEN 3: PRINT "Nice weather" 4: END IF 5: PRINT "The ...

1 2 3 4 5 33