The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
50 views

best way to integration test spring mvc

I have a Spring MVC 3.2 project that I would like to unit & integration tests. The problem is all the dependencies I have, makes testing extremely difficult even with Sprint-test. I have a ...
0
votes
2answers
87 views

Integration Tests in grails: getting null in query string parameter

I'm doing integration tests for controllers in grails.I need to pass query string in test case and I'm passing it as controller.request.queryString for the same. My tests is getting failed. It's ...
2
votes
1answer
156 views

Grails null id error on constraints during integration test

Grails 2.2.0 I am trying to create a custom constraint to force user to have only one master email. Here is the simplified code causing the error: User domain class class User { static hasMany ...
1
vote
0answers
97 views

How to use cobertura.ser generated by ant to be used while running maven integration test

I run integration-test with cucumber cases (say: with tag@abc in feature files) with following command and pom.xml snippet - pom.xml snippet: ... <plugin> ...
0
votes
2answers
82 views

@Autowired HttpServletRequest inside integration tests

Finally I have managed to setup the context for some integration test and to test methods that expect @PathVariable or @ModelAttribute. Still, I cannot figure out how can I setup the ...
0
votes
1answer
73 views

Integration tests in Continious Integration Tool (TeamCity)

How to perform automated integration testing at each build with TeamCity? Normally there would be these steps: Checkout from Code Repository; Build; Deploy; Start Server; Run tests on Server. The ...
0
votes
2answers
157 views

Can't initialize Service in Grails Integration Test because of JNDI lookup

I have a service that implements InitializingBean and DisposableBean class MyService implements InitializingBean, DisposableBean { static transactional = false def grailsApplication ...
1
vote
1answer
147 views

Transactions don't roll back on IntregrationSpecs with autoFlush

I'm using Grails. All my Spock Integration tests are working. But when I turned autoFlush property true, several tests started failing, because data weren't being rolled back. Any ideas? *Im using ...
1
vote
1answer
200 views

rspec save_and_open_page does create an html dump

I am trying to use save_and_open_page to see the details of why an rspec test is failing: Related Test Code it { should have_selector('div.alert'); save_and_open_page} the test executes and fails ...
0
votes
0answers
45 views

Run Multiple Integration Tests from different Solutions in VS12

Background: We use VS12, C#, and NuGet. We have TeamCity functioning for our lower environments but not in prod yet. We are doing a release soon where I will need to run integration/service tests ...
0
votes
1answer
123 views

bundle rspec /spec is failing

I'm trying to run a test suite using rspec with the command(s) bundle exec rspec /spec/models/user_spec.rb or bundle exec rspec /spec/requests Results in the following error messages: ...
0
votes
1answer
87 views

Why does a domain class behave differently in two different methods of the same GroovyTestCase?

I have a Grails integration test that extends GroovyTestCase with two test methods. The first method executes successfully, but the second fails with a groovy.lang.MissingMethodException: ...
0
votes
1answer
343 views

How do I set a system variable for use in a maven failsafe test?

I'm trying to run tests on a buildserver that doesn't have the environment variable I need set. The variable is used from within a spring context xml file to resolve the location of property files. ...
1
vote
2answers
296 views

Rails - rspec - How can I run all the integration tests, similar to rake spec:models

The following commands work: rake spec:models rake spec:controllers rake spec:requests but the following does not: rake spec:integration rake spec:integrations How can I run all the integration ...
0
votes
1answer
63 views

How to differentiate between unit tests and integration tests in Buildr?

The Buildr quickstart documentation has a section on integration tests should be written. It briefly says you can write integration tests "[in] much the same way as you write unit tests." However, ...
0
votes
1answer
232 views

grails integration test on a service: cannot invoke method on null object (grails 2.0.3 on groovy 1.8 )

I have a dispatcher service which delegates to other services. I am attempting to test dispatching to the email service. (I have not tested the other services) The integration test on the dispatcher ...
1
vote
1answer
648 views

Grails Quartz Job Integration test - Not autowired Job

I'm writing the Integration test for a Quartz Job in a grails application. I've the Job in grails-app/jobs folder, and if I start the application it works. The problem is that I want to get it in an ...
2
votes
1answer
455 views

Missing method exception

I was working on integration test and I am getting missing method exception every time, Here is the code for integration test package supasonic import grails.plugin.spock.IntegrationSpec class ...
0
votes
1answer
445 views

grails: Behaviour of list.contains in code vs integration test

Imagine there is a form to do a bulk update for a group of logins and their statuses; the logic used is about having a hidden field which keeps track of all possible ids and a group of… e.g. radio ...
5
votes
5answers
188 views

PHPUnit - Automatically retry failed tests X times?

I have a complex set of PHPUnit tests, some of which involve connecting to servers around the world that, for whatever reason, timeout sometimes. Rather than having the test fail when the server ...
1
vote
2answers
174 views

Best practices for unit testing integration with an unpredictable third party resource that you don't have control over

I've written an application that interacts with at least one third party resource (in my case it's a website and there are many websites that need to be tested against) that I do not have control ...
2
votes
1answer
627 views

MSBuild: Copy dependency files before the NUnit task run

We are migrating from MSTests to NUnit. The first step was to migrate all our UnitTests projects which was accomplished using the following msbuild task: <Target Name="RunTests"> <!-- ...