Questions tagged [test-data]

246 questions
0
votes
1 answer

Sybase test data generation - Dates

When I create test data in PowerDesigner 16.1, the software always includes a time right next to the date. Is there any way to modify the test data generation to remove the time and only get the dates, following this format (mm/dd/yyyy)? When I…
Aragorn64
  • 149
  • 7
0
votes
3 answers

What is a quick way to insert test data into tables in Oracle/Generate insert statements with different values (SQL)?

I'm trying to populate my tables with test data, but I'm looking for a way to do so without copying and pasting the same insert statement for each table repeatedly for ages and changing the values. Is there a simple and fast way to create a bunch of…
0
votes
1 answer

How can I add pandas.Dataframe to file that is created as test_data?

I split data for train data and test data for machine learning like this train_df, test_df = train_test_split(df, test_size=0.2, random_state=42) and now I want to save each data to 'train_data' and 'test_data' file that are accessible like…
0
votes
1 answer

Manage large amount of environment specific test data in testNG

I have an enterprise android application and a package created for testing the app. The package runs on a framework that uses Appium and testNG. The test package has various tests that check the content, labels, functionality of the app. The package…
Akhilesh Sharma
  • 133
  • 1
  • 1
  • 9
0
votes
1 answer

What is the significance of seed value in HCL OneTest Data while generating the test data?

I am trying to use HCL OneTest Data to generate the test data for a defined schema. While generating test data, there is a field as Seed value, so can anyone help me to understand what is seed value?
askdev
  • 15
  • 2
0
votes
1 answer

Cross validation: train/test set split necessary?

Let's say I want to use a Random Forest model to predict future data. I'm thinking about two ways of training this model, picking the best hyperparameters, and putting this model in production. The difference between the two approaches is that the…
0
votes
1 answer

How to interpolate from test data in Python? 2 sets of inputs

New coder here. I have 2 rows of inputs and 3 of outputs, trying to interpolate between the inputs. The outputs are experimentally determined coefficients. The input data does form a grid. Inputs are temperature, %concentration. Outputs are…
0
votes
0 answers

Is there a way to use Azure DevOps Test Plan parameters for each test case as part of automate testing from visual studio?

One of my automated testing projects is looking to use parameters under Azure DevOps Test Plan as an input for each test case and whenever test case would be run from visual studio, it should pick data from Azure DevOps Test Plan parameters.
0
votes
3 answers

Is there any way to test multiple websites and check their http status code using ruby, capybara and cucumber

I've written single test scenario that runs on multiple websites (around 400) and return the actual status code of the website. (Expected to be 200 when the site is up and running). I'm using Scenario Outline and Examples to write down the test data…
Poo M
  • 31
  • 3
0
votes
1 answer

Need help understanding the MLPClassifier

I've been working with the MLPClassifier for a while and I think I had a wrong interpretation of what the function is doing for the whole time and I think I got it right now, but I am not sure about that. So I will summarize my understanding and it…
AnnaLee
  • 3
  • 5
0
votes
1 answer

Test Data structure for Tests to improve test readability

I have one question related to the test data and the test-class structure. I have a test class with few tests inside. Now, the given and the expected data are structures that I create for almost every test. I write my tests to look like this: …
Emanonk
  • 174
  • 3
  • 16
0
votes
0 answers

How to prepare only test dataset from text data?

I am performing ML classification task with LinearSVC with text dataset in python. I have created train and test dataset with Sklearn (train_test_split). The algorithm works proper on my dataset. My question is, I have similar dataset with same…
0
votes
1 answer

training and test set same variable not same class in randomForest

I have used a training set to train a random forest model using the randomForest package in R. A variable in the training set is character class and I converted it to as.numeric(factor()). However, the same variable in the test set is still…
Ian
  • 157
  • 1
  • 7
0
votes
1 answer

Which distributions can be used to produce starting times of jobs if there is no observation real state?

I need to produce some data which has starting times of each job (# of jobs: 30), I do not have chance to get real data so how can I generate data which shows similarities with a data distribution. In this case, which distribution should be good to…
atco35
  • 5
  • 5
0
votes
1 answer

How can I prevent a container from being pulled in a docker-compose environment

I am working with a docker-environment which is used for external testing. The customers depend on the data in the environment so I don't want to pull / up the database container. Is there an option to have a container in the compose-file but…
beigo
  • 1
  • 2