Questions tagged [regression-testing]

Regression testing is a form of software testing that focuses on retesting past fixed bugs to verify that recent changes to the software have not reactivated the old bugs.

Regression testing is a form of software testing that focuses on retesting past fixed bugs to verify that recent changes to the software have not reactivated the old bugs. A software build in which old bugs resurface is said to have "regressed", in the sense that the software has taken a step backwards on the project completion timeline. Regression testing is typically done concurrently with unit testing, integration testing and systems testing and may be incorporated as a part of each of those testing phases.

223 questions
0
votes
1 answer

how to store regression testing results?

we have a lot of regression tests, which are running on each nightly product build. can anybody advise a system to store regression results? in ideal we want simple tool with API and ORM to store simple records like: test_case1 | build_#1 | ok |…
0
votes
1 answer

How can I provide users with the functionality of the DBUnit DatabaseOperation methods from a web interface?

I am currently updating a java-based web application which allows database developers to create stored procedure regression test suites for database testing. Currently, for test setup, execution and clean-up stages, the user is provided with text…
vaughan
  • 6,982
  • 6
  • 47
  • 63
0
votes
0 answers

c# testing with selenium can you run multiple tests?

I was Wondering is it possible in the Testing Suite that is part of VS2012 to be able to construct a test using selenium which drivers the Web Site to the page which requires multiply test's and to be able to execute these test's in such a way that…
0
votes
0 answers

TestComplete Error "0x80070057 The parameter is incorrect." when executing ClickCell

I'm experiencing a problem that I could not find a solution for yet. I use Test Complete to automate some GUI related scenarios for an app. I developed some scripts that were working at some point in the past. After a few months I got back and tried…
0
votes
2 answers

Best books/resources for learning QTP as a beginner

I am working in a company working primarily in manual testing. Now for a specific project they require me to learn QTP. I will be given training but I don't think it will suffice. I am seeking some books/web links for tutorials and videos. I am…
demouser123
  • 4,108
  • 9
  • 50
  • 82
0
votes
1 answer

Stata - Tobit - Lagrange Multiplier Test

Community, I am running a left- and right-censored tobit regression model. The dependent variable is the proportion of cash used in M&A transactions running from 0 to 1. I assume heteroskedasticity to be prevalent due to the characteristics of my…
0
votes
1 answer

Gretl - test alpha and beta

I have done an ordinary least squared with an excel data set. Now I want to test α against the value of 0 and β against the value of 1 using an error probability of 0.05%. How to do this in gretl? I appreciate your answer!!!
maximus
  • 11,264
  • 30
  • 93
  • 124
0
votes
1 answer

How to develop regression tests for a calculation engine

I'm on a team developing a financial information web app. We haven't written many automated tests for it yet, so we've decided to add regression tests to the most critical parts of our program. I'm very new to automated testing, though, so I'm not…
Kevin
  • 14,655
  • 24
  • 74
  • 124
0
votes
1 answer

Using xpath vs span to get elements (one works on IE and Firefox but the other one only in IE)

I am new to Watir framework and we have a code like $browser.link(:xpath, "//a[@href='/servlets/ProcessAction?identifier=createMemberAccountTypes&click1=Accounts_Open']").click . But this works well on IE but not on Firefox always. So we use…
WowBow
  • 7,137
  • 17
  • 65
  • 103
0
votes
1 answer

Build Controller and Test Agent on separate servers won't work

We have one server with a build controller, one server with a test agent and one server with Visual Studio 2010 Ultimat installed. When we queue a test to build on the controller and run on the agent, the test (cuit) builds and runs on the…
0
votes
1 answer

How to automate relationship testing in Doctrine2 entities and mappings?

My team and i have a large web application we're porting to use the Symfony framework which includes Doctrine2 for data access. As we're just starting, we're wondering about regression testing for the entity relationships later on. We have a large…
Gary Willoughby
  • 50,926
  • 41
  • 133
  • 199
0
votes
1 answer

Creating Regression Tests

We are implementing a functional/regression testing system at work to test our services (our app is setup using a client/server architecture). How do you start? Do you build some test cases? What about starting a new feature? Would all the test…
Chris
  • 28
  • 5
0
votes
1 answer

Create JUnit test for a method covering all its invocations in Eclipse workspace

Lets assume following Java class: class MyClass { public String methodA( String data, String expression ) { // expression is evaluated using data // ... // this leads to a result which is returned return result; …
SimonTheSorcerer
  • 500
  • 4
  • 13
0
votes
1 answer

TypeMock in an integration/regression test suite

I need to run an integration/regression test suite for our application and the application is supposed to behave differently at different times of the day. I cannot change the system time since other apps depend on it I would like to mock…
-1
votes
0 answers

How to know which tests cover which statements?

I am working on a project concerning the field of regression testing. Since I am interested in statement coverage analysis, I would like to know if there are any tools that are able to tell me, for each statement in a (C or Java) program, by which…
1 2 3
14
15