using NUnit.Framework; namespace Deltares.Maps.Tests { [TestFixture] public class FeatureRepositoryTests { [Test] [Category("Integration")] [ExpectedException(typeof(FeatureImportException))] public void CreateFromShapeFile_UsingShapeFileThatContainsOneCompositeShapeAndNRecords_Throws() { string plLinesFilename = @"..\..\..\..\data\Dam\Waterboards\HD\shapefiles\PLLINES.shp"; FeatureRepository.CreateFromShapeFile(new ShapeFileLocation(plLinesFilename)); } } }