public void GetTypeAccessorModifiersTest()
        {
            ConstructorInfo constrInfo = default;

            string actual = ConstructorFormatter.GetTypeAccessorModifiers(constrInfo);

            string expected = default;

            Assert.That(actual, Is.EqualTo(expected));
            Assert.Fail("autogenerated");
        }
        public void GetGenericArgumentsTypeTest()
        {
            IEnumerable <Type> arguments = default;

            string actual = ConstructorFormatter.GetGenericArgumentsType(arguments);

            string expected = default;

            Assert.That(actual, Is.EqualTo(expected));
            Assert.Fail("autogenerated");
        }
        public void FormatTest()
        {
            ConstructorInfo constrInfo = default;

            string actual = ConstructorFormatter.Format(constrInfo);

            string expected = default;

            Assert.That(actual, Is.EqualTo(expected));
            Assert.Fail("autogenerated");
        }