public void CanGetAttributesWithSchema()
        {
            var command = new GetFeatureClassAttributesCommand("COUNTIES", "BOUNDARIES");

            command.Run();

            Assert.That(command.Result, Is.Not.Null);
            Assert.That(command.Result, Is.Not.Empty);
        }
        public void TableNotFound()
        {
            var command = new GetFeatureClassAttributesCommand("MISSING");

            command.Run();

            Assert.That(command.Result, Is.Not.Null);
            Assert.That(command.Result, Is.Empty);
        }
        public void CanGetAttributesFromSgidImplicitly()
        {
            var command = new GetFeatureClassAttributesCommand("COUNTIES");

            command.Run();

            Assert.That(command.Result, Is.Not.Null);
            Assert.That(command.Result, Is.Not.Empty);
        }
        public void CanGetAttributesWithSchema()
        {
            var command = new GetFeatureClassAttributesCommand("COUNTIES", "BOUNDARIES", "10");

            command.Run();

            Assert.That(command.Result, Is.Not.Null);
            Assert.That(command.Result, Is.Not.Empty);
        }
        public void TableNotFound()
        {
            var command = new GetFeatureClassAttributesCommand("MISSING");

            command.Run();

            Assert.That(command.Result, Is.Not.Null);
            Assert.That(command.Result, Is.Empty);
        }
        public void CanGetAttributesFromSgidImplicitly()
        {
            var command = new GetFeatureClassAttributesCommand("COUNTIES");

            command.Run();

            Assert.That(command.Result, Is.Not.Null);
            Assert.That(command.Result, Is.Not.Empty);
        }