Exemplo n.º 1
0
        public void ToString_OnInternalFeature_Returns_NonEmptyString()
        {
            var properties = new[]
            {
                new Property(new PropertyIdentifier("p1"), "p1"),
            };
            var feature = new Feature(new FeatureIdentifier("id"), "id", properties);
            var sot     = new FeatureInstance(feature, properties.Select(p => p.Id), true);

            Assert.False(string.IsNullOrEmpty(sot.ToString()));
        }