Пример #1
0
        public AlbumsModelTests(ITestOutputHelper output)
        {
            this.output = output;
            this.albumsModel = AlbumsModel.GetInstance();

            TestUtil.InitDatabase();
        }
Пример #2
0
 public PicturesController()
 {
     this.picturesModel = PicturesModel.GetInstance();
     this.albumsModel = AlbumsModel.GetInstance();
     this.imageStorage = ImageStorage.GetInstance();
 }
Пример #3
0
 static TestUtil()
 {
     albumsModel = AlbumsModel.GetInstance();
 }