aboutsummaryrefslogtreecommitdiff
path: root/jimfs/src/test/java/com/google/jimfs/internal/InternalTestUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'jimfs/src/test/java/com/google/jimfs/internal/InternalTestUtils.java')
-rw-r--r--jimfs/src/test/java/com/google/jimfs/internal/InternalTestUtils.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/jimfs/src/test/java/com/google/jimfs/internal/InternalTestUtils.java b/jimfs/src/test/java/com/google/jimfs/internal/InternalTestUtils.java
deleted file mode 100644
index c215894..0000000
--- a/jimfs/src/test/java/com/google/jimfs/internal/InternalTestUtils.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * 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.jimfs.internal;
-
-import java.io.IOException;
-
-/**
- * @author Colin Decker
- */
-class InternalTestUtils {
-
- private InternalTestUtils() {}
-
-
- static ByteStore byteStore(int size) {
- ByteStore store = new ByteStore(new HeapDisk(8096, 1000, 1000));
- try {
- store.write(0, new byte[size], 0, size);
- return store;
- } catch (IOException e) {
- throw new AssertionError(e);
- }
- }
-}