Sha256: eab89fde7e76a53715486a260b6f7844289da1c3841b7dbc9441162c703d3635
Contents?: true
Size: 590 Bytes
Versions: 69
Compression:
Stored size: 590 Bytes
Contents
using System; namespace Generators.Methods { public class TestMethodOptions { public string InputProperty { get; set; } public bool FormatInput { get; set; } = true; public bool FormatExpected { get; set; } = true; public bool UseVariableForExpected { get; set; } = false; public Type ExceptionType { get; set; } = typeof(ArgumentException); public TestedMethodType TestedMethodType { get; set; } = TestedMethodType.Static; public Func<object, bool> ThrowExceptionWhenExpectedValueEquals { get; set; } = (x) => false; } }
Version data entries
69 entries across 69 versions & 1 rubygems