00143 20150602 단정문 Fail를 활용한 예시 - AngryQA/blog GitHub Wiki

단정문-Fail를 활용한 예시

AngryQA | 2015-06-02 화요일 오후 4:28 | 테스트 도구/JUint 등 / 단위테스트 | 원본

실업무에서 단위테스트 작성중 

단정문-Fail를 활용한 예시

fail

    - fail([String message])

    - 테스트를 바로 실패 처리한다. message는 생략 가능. 절대 수행되지 않아야 될 부분(예를들어, 예외가 발생하는 부분 다음)을 표시하는 데 사용한다.

|

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

|

@Test (timeout = 60000)

    public void ReadImage() throws InterruptedException, MalformedURLException {

        System.out.println("====================================");

        System.out.println("ReadImage");

        System.out.println("====================================");

        //SourceImageFile & TargetImageFile set

        ST_SET("C:\Dev_SQA\Image\InziiFile.ocx\ReadImage\ReadImage_정상.tif", "NULL");

        //method run - ReadImage

        WebElement go = driver.findElement(By.xpath("/html/body/form/table[33]/tbody/tr[2]/td[2]/input"));

        go.click();

        //return equals - ReadImage

        WebElement returnValue = driver.findElement(By.id("ReadImage_ret"));

        String a = returnValue.getAttribute("value");

        int numInt1 = Integer.parseInt(a);

        if(numInt1 != 0) {

            System.out.println("ReadImage = " + a);

            assertNotNull(a);

        }

        else {

            //ReadImage_error Case 경우

            System.out.println("ReadImage = " + a);

            fail();

        }

Colored by Color Scripter

| cs |

Comments

String a = returnValue.getAttribute("value");

이부분 변수명

String ReadImage_ret = returnValue.getAttribute("value");

이렇게 해주는게 더 보기 좋을꺼에요 ㅋㅋ나중에라도

일원동 너구리 | 2015-06-02 화요일 오후 4:31

--

감사합니닼!

빈스윤 Beenbyoon | 2015-06-02 화요일 오후 4:31

--