コード例 #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();
            }
コード例 #2
0
ファイル: PO_SearchSteps.cs プロジェクト: hnlord/A
        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();
        }