selenium自動化-java-封裝斷言

來源:互聯網
上載者:User

標籤:int   方法   用例   cat   ted   string   斷言   and   for   

封裝的斷言。

1 package com.baidu.www; 2 3 import org.testng.Assert; 4 /* 5 * 封裝斷言 6 */ 7 public class assertion { 8 static boolean flog = true; 9 10 public static void verifyassert(Object actual, Object expected) {11 try {12 Assert.assertEquals(actual, expected);13 } catch (Error e) {14 // TODO: handle exception15 flog = false;16 }17 }18 19 public static void verifyassert(Object actual, Object expected, String message) {20 try {21 Assert.assertEquals(actual, expected, message);22 } catch (Error e) {23 // TODO: handle exception24 flog=false;25 }26 27 }28 }

 調用方法,判斷錯誤,繼續執行

 1 @Test 2     public void test1() { 3         System.out.println("測試案例一"); 4         int actual; 5         int expected; 6         actual = 1; 7         expected = 2; 8         assertion.flog = true; 9         for (int i = 0; i < 3; i++) {10             System.out.println("斷言開始1");11             assertion.verifyassert(i, expected, "測試連個字元是否相同");12             System.out.println("斷言結束");13             // 結果是tur;要修改14         }15         Assert.assertTrue(assertion.flog);  //結果改為flog,錯

 

selenium自動化-java-封裝斷言

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.