aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/shell/TestUtil.java
diff options
context:
space:
mode:
authorGravatar Han-Wen Nienhuys <hanwen@google.com>2015-02-12 13:27:06 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-02-12 13:27:06 +0000
commitb0e387b18aa1d505deb85c3d27fb99fbf344fd2a (patch)
tree3faad9c437c34cc78a0f547df2751febd4a9dbc8 /src/test/java/com/google/devtools/build/lib/shell/TestUtil.java
parent7e73a28c3da7011a2b808f4561918bd676bc66c4 (diff)
Add shell tests to bazel.
-- MOS_MIGRATED_REVID=86171408
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/shell/TestUtil.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/shell/TestUtil.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/shell/TestUtil.java b/src/test/java/com/google/devtools/build/lib/shell/TestUtil.java
new file mode 100644
index 0000000000..70169ba5cc
--- /dev/null
+++ b/src/test/java/com/google/devtools/build/lib/shell/TestUtil.java
@@ -0,0 +1,33 @@
+// Copyright 2015 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+package com.google.devtools.build.lib.shell;
+
+import static com.google.common.truth.Truth.assertThat;
+
+/**
+ * Some tiny conveniences for writing tests.
+ */
+class TestUtil {
+
+ private TestUtil() {}
+
+ public static void assertArrayEquals(byte[] expected, byte[] actual) {
+ assertThat(actual).isEqualTo(expected);
+ }
+
+ public static void assertArrayEquals(Object[] expected, Object[] actual) {
+ assertThat(actual).isEqualTo(expected);
+ }
+
+}