blob: 80bdd88b3f381b57494629d16dadfc61713b086c [file] [log] [blame]
Simon Hunt338a3b42016-04-14 09:43:52 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
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
Simon Hunt642bc452016-05-04 19:34:45 -070017package org.onosproject.ui.impl;
Simon Hunt338a3b42016-04-14 09:43:52 -070018
19/**
Simon Hunt642bc452016-05-04 19:34:45 -070020 * Base class for unit tests.
Simon Hunt338a3b42016-04-14 09:43:52 -070021 */
Simon Hunt642bc452016-05-04 19:34:45 -070022public class AbstractUiImplTest {
Simon Hunt338a3b42016-04-14 09:43:52 -070023
24 /**
25 * System agnostic end-of-line character.
26 */
27 protected static final String EOL = String.format("%n");
28
29 /**
30 * Prints the given string to stdout.
31 *
32 * @param s string to print
33 */
34 protected void print(String s) {
35 System.out.println(s);
36 }
37
38 /**
39 * Prints the toString() of the given object to stdout.
40 *
41 * @param o object to print
42 */
43 protected void print(Object o) {
Simon Hunt642bc452016-05-04 19:34:45 -070044 if (o == null) {
45 print("<null>");
46 } else {
47 print(o.toString());
48 }
Simon Hunt338a3b42016-04-14 09:43:52 -070049 }
50
51 /**
52 * Prints the formatted string to stdout.
53 *
54 * @param fmt format string
55 * @param params parameters
56 * @see String#format(String, Object...)
57 */
58 protected void print(String fmt, Object... params) {
59 print(String.format(fmt, params));
60 }
61
Simon Hunt642bc452016-05-04 19:34:45 -070062 /**
63 * Prints a title, to delimit individual unit test output.
64 *
65 * @param s a title for the test
66 */
67 protected void title(String s) {
68 print(EOL + "=== %s ===", s);
69 }
Simon Hunt338a3b42016-04-14 09:43:52 -070070}