selenium自動化-java-封裝斷言


封裝的斷言。

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 exception 15 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 exception 24 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,錯

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM