/// <summary>
 /// Initializes a new instance of the <see cref="OrganizationRegistrationRepositoryTest"/> class.
 /// </summary>
 public OrganizationRegistrationRepositoryTest()
 {
     this._fakeBuilder = new FakeFundTrackDbContextBaseBuilder();
     this._fakeBuilder.SetOrganizations();
     this._context = this._fakeBuilder.GetFakeContext();
 }
 public TargetRepositoryTests()
 {
     this._fakeBuilder = new FakeFundTrackDbContextBaseBuilder();
     this._fakeBuilder.SetTargets();
     this._context = this._fakeBuilder.GetFakeContext();
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PhoneRepositoryTest"/> class.
 /// </summary>
 public PhoneRepositoryTest()
 {
     this._fakeBuilder = new FakeFundTrackDbContextBaseBuilder();
     this._fakeBuilder.SetPhones();
     this._context = this._fakeBuilder.GetFakeContext();
 }