-
Users Handbook
-
-
-
- Intro & Basics
- All Objects have Descriptions
- Check for unused procedures
- Compiled Procedures up to date
- Invalid Source Layers
- Required Columns
- Check for abnormally ended Jobs
- Check for blocked Jobs
- Check for disabled Tasks
- Check for duplicate tasks in different Jobs
- Check for duplicate tasks in same Job
-
-
-
Administrators Handbook
-
- Register URL
- Configure SSL/HTTPS
- Configure Proxy-Server
- How to edit the appsettings.json file
- System Settings
- Global Parameters
- Allow Service Account to Logon as a Service
- LDAP & SSO Authentication
- Migrating Testcases and Configuration
- Licenses Management
- Manual Configuration
- Exposing the BiG EVAL REST API to other Network Segments
-
- Articles coming soon
-
Developers Handbook
-
Known Problems
-
Demo Virtual Machine
-
Release Notes
-
General
The following example iterates through a list of years. Within every year, it also iterates through the months 1 to 12. And within each month it iterates through a list of sales-territories.
This leads to multiple testcase-executions for each of the months of all years and also for all sales-territories.
var countries = new List { "Australia", "Canada", "France", "Germany", "United Kingdom", "United States" }; for(var year = 2010; year <= 2011; year++) { for(var month = 10; month <= 12; month++) { foreach(var country in countries) { SetComment($"{year}.{month} - {country}"); SetParameter("Year", year); SetParameter("Month", month); SetParameter("Country", country); await ExecuteAsync(); } } }
Table of Contents