コード例 #1
0
        public void VerifyAllSpecs()
        {
            var state = new DefaultPrimitiveGeneratorsTestsState();

            new Suite(10, 200)
            .Register(() => new GetGenerator(state))
            .Register(() => new GetRandomValue(state))
            .Run();
        }
コード例 #2
0
 public GetRandomValue(DefaultPrimitiveGeneratorsTestsState state)
 {
     this.state = state;
 }
コード例 #3
0
 public GetGenerator(DefaultPrimitiveGeneratorsTestsState state)
 {
     this.state = state;
 }