public TestProgramBuilder WithOptimizedTriads(TestSourceKey sourceKey) { Program.OptimizedTriads = TestProgramsGenerator.GetOptimizedTriads(sourceKey); return(this); }
public TestProgramBuilder WithTriads(TestSourceKey sourceKey) { Program.Triads = TestProgramsGenerator.GetTriads(sourceKey); Program.TriadsConditionIndexes = TestProgramsGenerator.GetTriadsConditionIndexes(sourceKey); return(this); }
public TestProgramBuilder WithTokens(TestSourceKey sourceKey) { Program.Tokens = TestProgramsGenerator.GetTokens(sourceKey); return(this); }
public TestProgramBuilder WithPolis(TestSourceKey sourceKey) { Program.Polis = TestProgramsGenerator.GetPolis(sourceKey); Program.PolisConditionIndexes = TestProgramsGenerator.GetPolisConditionIndexes(sourceKey); return(this); }
public TestProgramBuilder WithSource(TestSourceKey sourceKey) { Program.Source = TestProgramsGenerator.GetSource(sourceKey); return(this); }