Example #1
0
        public HeinekenWalk(double legendWeight = 1, double bounceRate = 0.1)
        {
            _bounceRate = bounceRate;
            _random = Randomness.Random;
            _conversionRate = legendWeight > 1 ? 0.8 : 0.55d;

            _midPages = Sets.Weight(SymposiumData.Pages["The Date"].Action, 1)
                .Weight(SymposiumData.Pages["The Kitchen"].Action, 1)
                .Weight(SymposiumData.Pages["The Legend"].Action, legendWeight).Build();
        }
Example #2
0
 public VisitActionSet(ISampleSet<VisitAction> actions)
 {
     Actions = actions;
 }