<< < 1 2 3 4 5 >   Sort: Date

Test Case Step Assertion Data Object Type
What is a simple data object type for test case step Assertions to support a test case step? A test case step assertion defines a single assertion for a test case step. An assertion should define a way to evaluate some aspects of the expected behavior. In many cases, multiple assertions are needed t...
2018-09-13, 1660🔥, 0💬

Archive JMeter Test Result Data
How to archive JMeter Test Result Data? I have converted all JMeter test result records to TestMan now. After you have converted data from the jmeter_test_result table to TestMan database, you need move converted data to an archive table as shown in this tutorial. 1. If this the first time, create a...
2017-12-13, 1653🔥, 0💬

Test Run Data Object type
What is a simple data object type for test run? Here is a simple data object type for test runs. Test_Run data type, in TestMan version 1.00, properties: ID - Identification of this test run. Name - A short name for this test run. Success - A Boolean flag indicating if this test run was successful o...
2018-09-01, 1652🔥, 0💬

Test Case Parameter Data Object Type
What is a simple data object type for test case parameters to support a test case? A test case parameter defines a single parameter to be supported by a test case. Adding parameters to a test case, makes it more reusable. You can execute the same test case repeatedly by providing different values to...
2018-09-24, 1647🔥, 0💬

Test Case Step Data Object Type
What is a simple data object type for test case steps to support a test case? A test case step defines a single step to be performed during the execution of a test case. Test case steps in a test case must be defined in a sequence that the tester needs to follow to perform the test case. Here is a s...
2018-09-13, 1631🔥, 0💬

Convert JMeter Test Result to TestMan
How to Convert JMeter Test Result to TestMan Data Model? In order migrate JMeter test result to TestMan, we need to decide how to convert JMeter test result data to TestMan tables and fields. One way to map JMeter test result to TestMan is described below: 1. For each unique value of Test_Run_Case_S...
2017-12-13, 1626🔥, 0💬

Test Case History Data Object Type
What is a simple data object type for test case history to support a test case? A test case history provides a single record about what change was made by who and when. Here is a simple data object type for test case histories. Test_Case_History data type, in TestMan version 1.00, properties: ID - I...
2018-09-13, 1605🔥, 0💬

Test Case Step Input Data Object Type
What is a simple data object type for test case step inputs to support a test case step? A test case step input defines a single input value for a test case step. The value could be a hardcoded value, the value of a parameter, or an expression based on one or more parameters. Here is a simple data o...
2018-09-13, 1583🔥, 0💬

What Is Software Test Run
What Is Software Test Run? A software test run is an execution instance of a test plan. A test run should contain information about when, where and who performed the execution, how each test cases were performed, and results of each test cases performed. Key elements of a test run are: Target - Prov...
2018-09-01, 1557🔥, 0💬

MySQL Requirements for TestMan
What are MySQL requirements for implementing TestMan? If you want to implement TestMan data model in MySQL as described in previous chapters, you need to meet the following requirements. 1. MySQL server 5.6 or higher. 2. MySQL client command tool. 3. A database called "TestMan" on the MySQL server. ...
2017-12-21, 1538🔥, 0💬

Implementing TestMan in MySQL
Where to find tutorials on Implementing TestMan in MySQL? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Implementing TestMan in MySQL. MySQL Requirements for TestMan Create Test Case Tables Create Test Run Tables Create JMeter Test Result Tab...
2017-12-21, 1531🔥, 0💬

Latest Runs Summary Report
How to generate a report for Latest Test Run Cases Summary from TestMan database? You can follow this tutorials to generate a report for Latest Test Run Cases Summary from TestMan MySQL database: 1. Create a SQL script file, Report-Latest-Run-Cases-Summar y.sql:-- Report-Latest-Run-Cases-Summar y.sql...
2017-11-26, 1530🔥, 0💬

Update TestMan Test Run Tables
How to update TestMan Test_Run and Test_Run_Case tables with data from Test_Run_Case_Step table? "Duration", "Total", and "Failed" in Test_Run and Test_Run_Case tables can be calculated from Test_Run_Case_Step table as shown in the UpdateJMeterData.sql SQL script below: -- UpdateJMeterData.sql use T...
2017-12-13, 1516🔥, 0💬

Latest Failed Test Steps Report
How to generate a report for Latest Failed Test Run Case Steps from TestMan database? You can follow this tutorials to generate a report for Latest Failed Test Run Case Steps from TestMan MySQL database: 1. Create a SQL script file, Report-Latest-Failed-Steps.sql :-- Report-Latest-Failed-Steps.sql u...
2017-11-26, 1516🔥, 0💬

Test Run Case Step Assertion Data Object Type
What is a simple data object type for test run case step Assertions to support a test run case step? A test run case step assertion records the result of a single test case step assertion performed during the execution of a test step. Here is a simple data object type for test case step assertions. ...
2018-07-22, 1513🔥, 0💬

Generating Reports from TestMan Database
Where to find tutorials on Generating Reports from TestMan Database? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Generating Reports from TestMan Database. Latest Failed Test Steps Report Latest Runs Summary Report   ⇒ Latest Failed Test Ste...
2017-11-26, 1512🔥, 0💬

Test Run Case Step Data Object Type
What is a simple data object type for test run case steps to support a test case? A test run case step is an execution instance of a test step. A test run case step should contain information about how the test step were executed, what were the actual inputs used, and what were the results of assert...
2018-07-22, 1464🔥, 0💬

Load JMeter Test Result Files to TestMan
How to load JMeter Test Result Files to TestMan? You can use the following command to load a JMeter test result file (.jtl) in CSV format to TestMan: &gt;\fyicenter\mysql\bin\m ysql-u fyicenter -D TestMan -e "load data local infile 'jmeter_test_result.csv' into table JMeter_Test_Result fields te...
2017-12-13, 1459🔥, 0💬

Alter JMeter Test Result Table Structure
How to load Alter JMeter Test Result Table Structure? I found that my test result file does not match the table anymore. You need to alter JMeter Test Result table if you see issues when loading the test result file. For example, the "trid" is too big to fit into the "int" data type in the database....
2017-12-13, 1435🔥, 0💬

Test Run Case Parameter Data Object Type
What is a simple data object type for test run case parameters to support a test case? A test run case parameter provides the value of a test case parameter actually used during the execution. Here is a simple data object type for test run case parameters. Test_Run_Case_Parameter data type, in TestM...
2018-07-22, 1391🔥, 0💬

Test Run Case Step Input Data Object Type
What is a simple data object type for test run case step inputs to support a test run case step? A test run case step input records what actual value was used for a single input during the execution of a test step. Here is a simple data object type for test run case step inputs. Test_Run_Case_Step_I...
2018-07-22, 1387🔥, 0💬

What is SoapUI Pro?
SoapUI Pro is the world's most trusted API testing tool For REST, SOAP and other popular API and IoT protocols, SoapUI Pro provides the industry's most comprehensive and easy-to-learn functional testing capabilities. Based on open core technology proven by millions of community members, SoapUI Pro h...
2017-11-19, 1338🔥, 0💬

What is Selenium?
Selenium automates browsers. That's it! What you do with that power is entirely up to you. Primarily, it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) be automated as well. Selenium has the ...
2017-11-19, 1187🔥, 0💬

Test US SSN (Social Security Number) Generator
How to generate US SSN (Social Security Number)? Test US SSN numbers are frequently needed in testing applications that manage personal financial information like a bank Website. To help you to obtain some US SSN numbers for testing purpose, FYIcenter.com has designed this online tool. All you need ...
2023-12-03, 789🔥, 0💬

<< < 1 2 3 4 5 >   Sort: Date