You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/modules/client-simulation/demo/Volo.ClientSimulation.Demo/Scenarios/DemoScenario.cs

14 lines
372 B

using Volo.Abp;
using Volo.ClientSimulation.Scenarios;
namespace Volo.ClientSimulation.Demo.Scenarios
{
public class DemoScenario : Scenario
{
public DemoScenario()
{
AddStep(new SleepScenarioStep(RandomHelper.GetRandom(1000, 5000)));
AddStep(new SleepScenarioStep(RandomHelper.GetRandom(2000, 6000)));
}
}
}