From b0e387b18aa1d505deb85c3d27fb99fbf344fd2a Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Thu, 12 Feb 2015 13:27:06 +0000 Subject: Add shell tests to bazel. -- MOS_MIGRATED_REVID=86171408 --- .../google/devtools/build/lib/shell/TestUtil.java | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/test/java/com/google/devtools/build/lib/shell/TestUtil.java (limited to 'src/test/java/com/google/devtools/build/lib/shell/TestUtil.java') 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); + } + +} -- cgit v1.2.3