aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java
diff options
context:
space:
mode:
authorGravatar mjhalupka <mjhalupka@google.com>2018-02-28 11:01:37 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-02-28 11:03:44 -0800
commitde8138f6c0c4ab8a0e14c1fc63b5f61cc21f4798 (patch)
tree1f2220e606d34557084a2f5a937c6c00297cbc38 /src/test/java
parentdfa0b12a44c6cd434de612db2c6b5573ef4e64bb (diff)
Create a runtime codec for HashCode.
Remove the HashCode marshaller. PiperOrigin-RevId: 187350917
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/skyframe/serialization/HashCodeCodecTest.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/skyframe/serialization/HashCodeCodecTest.java b/src/test/java/com/google/devtools/build/lib/skyframe/serialization/HashCodeCodecTest.java
new file mode 100644
index 0000000000..0f0eb49ac5
--- /dev/null
+++ b/src/test/java/com/google/devtools/build/lib/skyframe/serialization/HashCodeCodecTest.java
@@ -0,0 +1,33 @@
+// Copyright 2018 The Bazel Authors. 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.skyframe.serialization;
+
+import com.google.common.hash.HashCode;
+import com.google.devtools.build.lib.skyframe.serialization.testutils.SerializationTester;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+/** A test for {@link HashCodeCodec} */
+@RunWith(JUnit4.class)
+public class HashCodeCodecTest {
+
+ @Test
+ public void testHashCodeCodec() throws Exception {
+ new SerializationTester(
+ HashCode.fromString("f00ba7"), HashCode.fromInt(456789), HashCode.fromLong(9001L))
+ .runTests();
+ }
+}