summaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/util/ZipUtilTest.java
blob: b98fa0806612b24fb25bebbc0b866541bc36f4a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package org.openecomp.sdc.common.util;

import org.junit.Test;

import java.util.Map;

public class ZipUtilTest {

	// private ZipUtil createTestSubject() {
	// return new ZipUtil();
	// }

	@Test
	public void testReadZip() throws Exception {
		byte[] zipAsBytes = new byte[] { ' ' };
		Map<String, byte[]> result;

		// default test
		result = ZipUtil.readZip(zipAsBytes);
	}

	@Test
	public void testMain() throws Exception {
		String[] args = new String[] { "" };

		// default test
		ZipUtil.main(args);
	}

	@Test
	public void testZipBytes() throws Exception {
		byte[] input = new byte[] { ' ' };
		byte[] result;

		// default test
		result = ZipUtil.zipBytes(input);
	}

	@Test
	public void testUnzip() throws Exception {
		byte[] zipped = new byte[] { ' ' };
		byte[] result;

		// default test
		result = ZipUtil.unzip(zipped);
	}
}