Example #1
0
        public void Testcase2()
        {
            //Create second property
            FinanceDetailsPO  fd2 = new FinanceDetailsPO();
            PropertyDetailsPO po2 = new PropertyDetailsPO();

            po2.EnterPropertyDetails("PropertyDetails", 2);
            fd2.EnterFinanceDetails("FinanceDetails", 2);
        }
Example #2
0
        public void Testcase1()
        {
            //Create a property
            FinanceDetailsPO  fd = new FinanceDetailsPO();
            PropertyDetailsPO po = new PropertyDetailsPO();

            po.EnterPropertyDetails("PropertyDetails", 1);
            fd.EnterFinanceDetails("FinanceDetails", 1);
        }
Example #3
0
        public void TestSuite1()
        {
            //Create a property
            Base.test.Log(Status.Info, "Test to create a new property");
            FinanceDetailsPO  fd = new FinanceDetailsPO();
            PropertyDetailsPO po = new PropertyDetailsPO();

            po.EnterPropertyDetails("PropertyDetails", 1);
            fd.EnterFinanceDetails("FinanceDetails", 1);

            //Create second property
            Base.test.Log(Status.Info, "Test to create a new property");
            FinanceDetailsPO  fd2 = new FinanceDetailsPO();
            PropertyDetailsPO po2 = new PropertyDetailsPO();

            po2.EnterPropertyDetails("PropertyDetails", 2);
            fd2.EnterFinanceDetails("FinanceDetails", 2);

            //Searchproperty
            Base.test.Log(Status.Info, "Test to search for property");
            SearchPO se = new SearchPO();

            se.SearchForProperty("SearchProperty", 1);
        }
        public void GivenIHaveEnteredFinancialDetails()
        {
            FinanceDetailsPO fd = new FinanceDetailsPO();

            fd.EnterFinanceDetails("FinanceDetails", 1);
        }