View Javadoc
1   /*
2    * Copyright (C) 2007-2012 Argeo GmbH
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *         http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.argeo.slc.core.test;
17  
18  import org.argeo.slc.SlcException;
19  import org.argeo.slc.test.TestStatus;
20  
21  public abstract class SlcTestUtils {
22  	public static String statusToString(Integer status) {
23  		if (status.equals(TestStatus.PASSED)) {
24  			return TestStatus.STATUSSTR_PASSED;
25  		} else if (status.equals(TestStatus.FAILED)) {
26  			return TestStatus.STATUSSTR_FAILED;
27  		} else if (status.equals(TestStatus.ERROR)) {
28  			return TestStatus.STATUSSTR_ERROR;
29  		} else {
30  			throw new SlcException("Unrecognized status " + status);
31  		}
32  	}
33  
34  	public static Integer stringToStatus(String statusStr) {
35  		if (statusStr.equals(TestStatus.STATUSSTR_PASSED)) {
36  			return TestStatus.PASSED;
37  		} else if (statusStr.equals(TestStatus.STATUSSTR_FAILED)) {
38  			return TestStatus.FAILED;
39  		} else if (statusStr.equals(TestStatus.STATUSSTR_ERROR)) {
40  			return TestStatus.ERROR;
41  		} else {
42  			throw new SlcException("Unrecognized status string " + statusStr);
43  		}
44  	}
45  
46  	private SlcTestUtils() {
47  
48  	}
49  
50  }