Add 'sdk/java-v2/' from commit '55f103e336ca9fb8bf1720d2ef4ee8dd4e221118'
[arvados.git] / sdk / java-v2 / src / test / java / org / arvados / client / logic / collection / static / git-favicon.png
diff --git a/src/test/java/org/arvados/client/logic/collection/ManifestFactoryTest.java b/src/test/java/org/arvados/client/logic/collection/ManifestFactoryTest.java
deleted file mode 100644 (file)
index 06ed07d..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) The Arvados Authors. All rights reserved.
- *
- * SPDX-License-Identifier: AGPL-3.0 OR Apache-2.0
- *
- */
-
-package org.arvados.client.logic.collection;
-
-import org.arvados.client.test.utils.FileTestUtils;
-import org.assertj.core.util.Lists;
-import org.junit.Test;
-
-import java.io.File;
-import java.util.List;
-
-import static org.assertj.core.api.Assertions.assertThat;
-
-public class ManifestFactoryTest {
-    
-    @Test
-    public void manifestIsCreatedAsExpected() throws Exception {
-
-        // given
-        List<File> files = FileTestUtils.generatePredefinedFiles();
-        List<String> locators = Lists.newArrayList("a", "b", "c");
-        ManifestFactory factory = ManifestFactory.builder()
-                .files(files)
-                .locators(locators)
-                .build();
-
-        // when
-        String actual = factory.create();
-
-        // then
-        assertThat(actual).isEqualTo(". a b c 0:1024:test-file1 1024:20480:test-file2 21504:1048576:test-file\\0403\n");
-    }
-}