public string StringOtherThan(params string[] alreadyUsedStrings)
 => _valueGenerator.ValueOtherThan(alreadyUsedStrings);
Beispiel #2
0
 public double DoubleOtherThan(params double[] others) => _valueGenerator.ValueOtherThan(others);
Beispiel #3
0
 public T ValueOtherThan <T>(params T[] omittedValues)
 {
     return(_valueGenerator.ValueOtherThan(omittedValues));
 }