Example #1
0
 private WebSpeciesFact GetSpeciesFact(Boolean refresh)
 {
     if (_speciesFact.IsNull() || refresh)
     {
         _speciesFact = SpeciesFactManagerTest.GetOneSpeciesFact(GetContext());
     }
     return(_speciesFact);
 }
Example #2
0
        //
        // You can use the following additional attributes as you write your tests:
        //
        // Use ClassInitialize to run code before running the first test in the class
        // [ClassInitialize()]
        // public static void MyClassInitialize(TestContext testContext) { }
        //
        // Use ClassCleanup to run code after all tests in a class have run
        // [ClassCleanup()]
        // public static void MyClassCleanup() { }
        //
        // Use TestInitialize to run code before running each test
        // [TestInitialize()]
        // public void MyTestInitialize() { }
        //
        // Use TestCleanup to run code after each test has run
        // [TestCleanup()]
        // public void MyTestCleanup() { }
        //
        #endregion

        public WebSpeciesFactQuality GetSpeciesFactQuality()
        {
            if (_speciesFactQuality.IsNull())
            {
                _speciesFactQuality = SpeciesFactManagerTest.GetOneSpeciesFactQuality(GetContext());
            }
            return(_speciesFactQuality);
        }
 private WebTaxonCountyOccurrence GetCountyOccurrence(Boolean refresh)
 {
     if (_countyOccurrence.IsNull() || refresh)
     {
         _countyOccurrence = SpeciesFactManagerTest.GetOneTaxonCountyOccurrence(GetContext());
     }
     return(_countyOccurrence);
 }