Bytes2you.Validation.UnitTests.Extensions.TypeExtensionsTests.HasPublicConstructors_Should.ReturnTrue_WhenTypeHasPublicConstructors C# (CSharp) Method

ReturnTrue_WhenTypeHasPublicConstructors() private method

private ReturnTrue_WhenTypeHasPublicConstructors ( ) : void
return void
        public void ReturnTrue_WhenTypeHasPublicConstructors()
        {
            // Act.
            bool hasPublicConstructor = typeof(TypeWithPublicConstructor).HasPublicConstructors();

            // Assert.
            Assert.IsTrue(hasPublicConstructor);
        }