Beispiel #1
0
            //Implement test case for TC_003_01
            public void Sprint1_SearchAProperty()
            {
                // Creates a toggle for the given test, adds all log events under it
                test = extent.StartTest("Search for a Property");

                // Create an class and object to call the method
                OwnerProperty obj = new OwnerProperty();

                obj.SearchAProperty();
            }
Beispiel #2
0
        public void ThenUserSearchResultsForPropertyAreSuccessfully()
        {
            // Creates a toggle for the given test, adds all log events under it
            test = extent.StartTest("Search for a Property");

            // Create an class and object to call the method
            OwnerProperty obj = new OwnerProperty();

            obj.SearchAProperty();

            TearDown();
        }