Tagged Questions
Integration testing is a phase in software testing where individual software modules (or components) are combined and tested in a group. Integration testing happens after unit testing, and before system testing.
0
votes
0answers
3 views
Maven+Selenium+Jetty - ClassNotFoundException when Jetty is Shutting Down
I am running an Integration test with Maven, Selenium and Jetty. The tests are executed OK, but when the server are shutting down then the Jetty server throws a java.lang.ClassNotFoundException: ...
0
votes
0answers
5 views
How to configure integration test for PayPal Express Checkout using TestUnit in a Rails 2.3 app
We're in the process of adding PayPal Express Checkout as an option for checking out of an ecom app running on Rails 2.3.18. I've got the code working and some unit tests for my custom ExpressCheckout ...
0
votes
0answers
6 views
Is it possibile to do integration tests with Robolectric?
I have MainActivity and SubActivity.
MainActivity has a button triggering a startActivityForResult calling SubActivity.
The SubActivy has the responsibility to add a record to a certain repository ...
0
votes
0answers
5 views
Best way for automatic remote install applicatons to computers in network
I have a virtual environment that consist of several virtual computers in virtual network.
I want to install some applictions on each computer from time to time.
How to automate this process?
I found ...
0
votes
0answers
39 views
Doubts about testing [on hold]
I'm learning about the tests. I don't have a code, so these are just doubt.
If there is a main class that calls some threads (and these threads don't work with the main class), how can an ...
0
votes
0answers
27 views
+100
Ember.js during testing: The URL '/' did not match any routes
I'm running some integration tests on my Ember app with Konacha.
Because of the nature of the tests, the Ember run loop is not disabled.
The tests work, but it seems that because I have not disabled ...
0
votes
0answers
15 views
Rails integration test failed because the final slash of the current_path
I`m writing a integration test using capybara, here the code of my test.
test "when providing invalid data" do
admin = create(:administrator)
signin_administrator_as admin.email, ...
1
vote
0answers
30 views
Dart browser testing with karma
How do I simulate the js karma function:
browser().navigateTo(url)
//Loads the url into the test frame.
using Dart and karma-dart. So far I've tried
window.location.assign('/start')
but it ...
-1
votes
0answers
35 views
Google map integration into a website
I used the following link to integrate google map in to my website. The only problem is that the yellow info box is not showing up. ( http://jsfiddle.net/mdermez32/GvUCc/ )
<!DOCTYPE html>
...
0
votes
1answer
52 views
Simple integration testing using bash with CMake and CTest?
I have a C++ CMake project where I use Google Test for unit testing and I'm happy with the XML reports produced using ctest -T Test. Now I would like to implement couple of integration tests that run ...
1
vote
1answer
52 views
+50
Client - server integration testing: mock or not?
I'm working on project with two applications: android app (client) and rest service (server). My android app consumes my rest service.
Both applications are tested separately to ensure they're doing ...
2
votes
3answers
54 views
How can I run my integration tests against two different databases?
Our solution has two different Database Providers, both located in separate projects. They both inherit a common IDbProvider that is located in our core project.
namespace OurApp.Data
{
public ...
0
votes
0answers
27 views
+50
Injecting contextual data in Resteasy tests with Netty
I'm trying to test a resource with Resteasy using an embedded Netty instance as described in the Resteasy Docs.
Injecting path parameters and query parameters works like a charm but then I tried to ...
2
votes
0answers
42 views
How to seperate unit and integration tests in testng + maven using annotations?
The maven fail-safe plugin needs to be able to tell the difference between unit tests and integration tests. It seems that when using JUnit one way to separate tests is to use JUnit @Categories ...
0
votes
0answers
24 views
rspec setup for integration tests
I want to set up some database state for integration tests. My basic setup looks like this:
describe "some behaviour" do
before(:each) do
<setup some mock objects with stubs>
...