public void GenerateReturnsRandomStateTest() { var target = new StateValueGenerator(); var first = target.Generate(typeof(string), "state", null); first.Should().BeOfType<string>(); first.As<string>().Should().NotBeNullOrWhiteSpace(); var second = target.Generate(typeof(string), "state", null); first.Should().NotBe(second); }
public void GenerateThrowsExceptionWithNullTypeTest() { var target = new StateValueGenerator(); Action action = () => target.Generate(null, null, null); action.ShouldThrow<ArgumentNullException>(); }
public void GenerateThrowsExceptionWithInvalidParametersTest(Type type, string referenceName) { var target = new StateValueGenerator(); Action action = () => target.Generate(type, referenceName, null); action.ShouldThrow<NotSupportedException>(); }
public void GenerateReturnsValuesForSeveralNameFormatsTest(Type type, string referenceName, bool expected) { var target = new StateValueGenerator(); var actual = (string) target.Generate(type, referenceName, null); actual.Should().NotBeNullOrEmpty(); }