[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / rules / MyTestWatcher.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.ci.tests.rules;
22
23 import org.junit.rules.TestWatcher;
24 import org.junit.runner.Description;
25 import org.openecomp.sdc.ci.tests.api.AttSdcTest;
26
27 public class MyTestWatcher extends TestWatcher {
28
29         AttSdcTest odlTest;
30
31         public MyTestWatcher(AttSdcTest odlTest) {
32                 this.odlTest = odlTest;
33         }
34
35         /**
36          * Invoked when a test succeeds
37          * 
38          * @param description
39          */
40         @Override
41         protected void succeeded(Description description) {
42                 String testName = description.getMethodName();
43                 odlTest.addTestSummary(testName, true);
44
45         }
46
47         /**
48          * Invoked when a test fails
49          * 
50          * @param e
51          * @param description
52          */
53         @Override
54         protected void failed(Throwable e, Description description) {
55                 String testName = description.getMethodName();
56                 odlTest.addTestSummary(testName, false, e);
57         }
58
59         /**
60          * Invoked when a test is about to start
61          * 
62          * @param description
63          */
64         @Override
65         protected void starting(Description description) {
66                 // System.out.println("protected void starting(Description description)
67                 // {");
68                 this.odlTest.getLogger().debug("Start running test {}", description.getMethodName());
69         }
70
71         /**
72          * Invoked when a test method finishes (whether passing or failing)
73          * 
74          * @param description
75          */
76         @Override
77         protected void finished(Description description) {
78                 // System.out.println("protected void finished(Description description)
79                 // {");
80                 this.odlTest.getLogger().debug("Finish running test {}", description.getMethodName());
81         }
82 }