コード例 #1
0
        public void CheckLayerForSymbolSetTest()
        {
            SymbolSetMappings symbolSetMappings = new SymbolSetMappings();
            string            featureClassName  = symbolSetMappings.GetFeatureClassFromSymbolSet("01", GeometryType.Point);

            Assert.IsTrue(featureClassName == "Air", "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromSymbolSet("40", GeometryType.Point);
            Assert.IsTrue(featureClassName == "Activities", "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromSymbolSet("60", GeometryType.Point);
            Assert.IsTrue(featureClassName == "Cyberspace", "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromSymbolSet("BOGUS", GeometryType.Point);
            Assert.IsTrue(string.IsNullOrEmpty(featureClassName), "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromExtendedFunctionCode("OHVP123456", GeometryType.Point);
            Assert.IsTrue(featureClassName == "Activities", "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromExtendedFunctionCode("SFGPUCIL--", GeometryType.Point);
            Assert.IsTrue(featureClassName == "Units", "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromExtendedFunctionCode("SFGPE-----", GeometryType.Point);
            Assert.IsTrue(featureClassName == "LandEquipment", "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromExtendedFunctionCode("SFGPI-----", GeometryType.Point);
            Assert.IsTrue(featureClassName == "Installations", "Feature Class from mapping is incorrect");
        }
コード例 #2
0
        public void CheckLayerForSymbolSetTest()
        {
            SymbolSetMappings symbolSetMappings = new SymbolSetMappings();
            string            featureClassName  = symbolSetMappings.GetFeatureClassFromMapping("01", GeometryType.Point);

            Assert.IsTrue(featureClassName == "Air", "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromMapping("40", GeometryType.Point);
            Assert.IsTrue(featureClassName == "Activities", "Feature Class from mapping is incorrect");

            featureClassName = symbolSetMappings.GetFeatureClassFromMapping("60", GeometryType.Point);
            Assert.IsTrue(featureClassName == "Cyberspace", "Feature Class from mapping is incorrect");
        }