public void TrySerialiseAnotherType()
        {
            JProperty property = new JProperty("First_name", new object[] { "This field is mandatory" });

            List<string> errorsList;
            bool worked = property.TrySerialiseArray(out errorsList);

            Assert.IsFalse(worked);
        }