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
0 answers

How to convert testingSuit xml file to a java class

I have testingSuit.xml which is interlinked to many xml files to test many test cases. Now I would like to run that testingSuit.xml (which is interlinked) through Java class programmatically. Here is my sample code
Swathi
  • 87
  • 1
  • 8
0
votes
0 answers

Is there a better way to print the results of a test sample ran through a model?

Good morning, all! I am attempting to output 10 examples of test data that has been run through my model. Admittedly, I am trying to use someone else's code that I adapted to my needs. However, the output I am getting is not what they got, and I…
0
votes
1 answer

Can I doc-test ELisp functions?

I like the Python feature of doc-tests for testing functions independently. Does Emacs Lisp have something similar, or could I emulate it in some way? For example, this function gets timestamps from an Org-mode clock segment: (defun…
miguelmorin
  • 5,025
  • 4
  • 29
  • 64
0
votes
0 answers

Create regression tests for C# API library

I have C# API Library (.Net Framework 4.5.2) and I want to create regression tests to compare between 2 versions of the API. All the information that I found is about how to create regression tests for Restful API, which is not my case. Today, I…
itaiy
  • 1,152
  • 1
  • 13
  • 22
0
votes
1 answer

What is an effective way to load data to test mobile app upgrades

We have a mobile app on iOS, Android, and UWP. Each release, we use the platform specific way to host a beta version. Then we install the production release of the app from the app store, add some basic data, and then install the beta version over…
Zach Green
  • 3,421
  • 4
  • 29
  • 32
0
votes
1 answer

Categorical numerical variable into continuous form for regression problem

I have a dataset in which all columns are numerical.Some of the columns have categories in numerical form having levels >= 2. Do i need to convert that categorical numerical column into factor for regression analysis or not ? Please suggest any…
0
votes
1 answer

Automating CSS Regression Testing with GEB

We have a suite of UI tests (Functional) that use GEB. However the code is legacy, not following CSS componentization and one change in CSS can have undetected side-effects in unrelated areas. Is there any plugin or workflow that can be integrated…
0
votes
2 answers

automatization of lm tests with all possible var combinations and getting values for: shapiro.test(), bptest(),vif() in R

I´ve spent days searching for the optimal models which would fulfill all of the standard OLS assumptions (normal distribution, homoscedasticity, no multicollinearity) in R but with 12 variables, it´s impossible to find the optimal var combination.…
Mapos
  • 177
  • 1
  • 9
0
votes
1 answer

Proxy for multiple test environment

I am trying to setup Test Automation process to be executed on multiple Under Test Environments acting on intermediate proxy. See below picture Existing test automation process is based on data-driven testing and it contains urls provided by manual…
0
votes
1 answer

Alternatives to validate Multi Linear regression time series

I am using multi linear regression to do sales quantity forecasting in retail. Due to practical issues, I cannot use use ARIMA or Neural Networks. I split the historical data into train and validation sets. Using a walk forward validation method…
Adeel Hashmi
  • 767
  • 1
  • 8
  • 20
0
votes
0 answers

Non-Stationarity with OLS - Newey West

I am running OLS regressions on time series data (interest rate swap spreads). I have run the regressions with Newey-West standard errors to deal with both autocorrelation and Heteroskedasticity. My question is: is this enough to ensure my model…
Eric
  • 1
0
votes
0 answers

Identify related tests for regression when a feature is changed

Would like to know if anyone has implemented a process on how to identify related test scripts for regression when a feature has changed. Assuming that in BDD, one would group tests under a feature, I believe its not sufficient to run only the tests…
SystemQA
  • 41
  • 1
  • 4
0
votes
1 answer

Which type of stats test to run when comparing vendor data sets against target data set

My boss asked me to compare web click data between an ad server we subscribe to and the demand-side platform and see how those compare to Google Analytics sessions. The concern is that the ad server is overcounting clicks while the ad server says…
0
votes
1 answer

Showing p-values in scientific notation with rcorr() function

I have a correlation matrix that I am trying to test the p-values for using rcorr() to get a correlation matrix. This is found in the Hmisc package. I have a matrix which you can see here called KCN which you can see the top 6 records of here: 0 0…
DeCodened
  • 59
  • 2
  • 8
0
votes
1 answer

why random forest regression return a very bad result?

I'm trying to use randomforestregressor() in scikit_learn to model some data.After processing my raw data, the data I applied to randomforestregressor() is as follows. The following is only a little part of my data. In fact, there are around 6000…