Questions tagged [test-environments]

The execution environment (server, data, users) for testing software.

There can be several phases of testing, each could require different text environments. They could be hosted on the same or different servers, but often they may have different sets of data and possibly users.

Some frequent types of test environments include (these definitions will vary at different companies):

  • Integration Test: First environment where individual programs are combined together to ensure interoperability
  • System Test: Where complete sets of well-defined test cases are run to exercise all business requirements
  • User Acceptance Test: Where end-users test out (new) functionality to ensure it meets their goals and data/results are valid
  • Performance Test: Testing that stresses the system with high volumes of data and transactions.
109 questions
0
votes
1 answer

Visual Studio Database project - Deployment to environments that do not have all database references

We have a medium sized SQL2005 database with references to other SQL Server and Netezza databases (via linked server). On PROD the references exist. In my VS2012 database project I have imported the references as linked servers or database…
0
votes
0 answers

Geocoder gem testing ip request

I want to test the following line in my view : app/views/products/index.html.erb <%= render @products %> app/views/products/_product.html.erb <%= distance_between(@current_location, product.location) %> The @products and…
0
votes
2 answers

Environment dependend properties in GWT

We have a GWT Application that has to link another Application. This link is different in all stages of my application (local, test, staging, prod). What options are there to configure a GWT app? Currently we're using properties files for every…
-1
votes
2 answers

What is a reasonable way to setup a unit testing environment in Angular with fake back-end?

I have a pretty standard Angular application, which comes with the standard Jasmine + Karma frameworks for unit testing. In my application I have several services which make use of the HttpClient class to query a back-end, and I obviously need to…
zeroquaranta
  • 392
  • 4
  • 16
1 2 3 4 5 6 7
8