Example #1
0
        public void CatalogIsNumericTest()
        {
            bool value = MyCollection.CatalogIsNumeric(_databasePath, out _errOut);

            if (value)
            {
                TestContext.WriteLine("Catalog can be converted to all numeric");
            }
            else
            {
                TestContext.WriteLine("Catalot cannot be converted to all numeric");
            }
            General.HasFalseValue(value, _errOut);
        }