Exemplo n.º 1
0
        public void MikeSheFileNameTest()
        {
            LayersCollection LC = new LayersCollection();

            Wells.Well W = new HydroNumerics.Wells.Well("w1", 50, 50);
            W.AddNewIntake(1);
            Screen sc = new Screen(W.Intakes.First());

            sc.BottomAsKote = 2;
            sc.TopAsKote    = 5;

            List <IWell> wells = new List <IWell>();

            wells.Add(W);
            LC.Wells = wells;

            LC.MikeSheFileName = @"..\..\..\TestData\testmodel.she";
        }
    public void MikeSheFileNameTest()
    {

      LayersCollection LC= new LayersCollection();

      Wells.Well W = new HydroNumerics.Wells.Well("w1", 50, 50);
      W.AddNewIntake(1);
      Screen sc = new Screen(W.Intakes.First());
      sc.BottomAsKote = 2;
      sc.TopAsKote = 5;

      List<IWell> wells = new List<IWell>();
      wells.Add(W);
      LC.Wells = wells;

      LC.MikeSheFileName = @"..\..\..\TestData\testmodel.she";


    }