You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/11/18 21:22:35 UTC

[commons-bcel] 02/02: Add ArrayTypeTest

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit e22b22c078bba51ea396da069644700602e75471
Author: Gary David Gregory (Code signing key) <gg...@apache.org>
AuthorDate: Fri Nov 18 16:22:29 2022 -0500

    Add ArrayTypeTest
---
 .../org/apache/bcel/generic/ArrayTypeTest.java     | 66 ++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git a/src/test/java/org/apache/bcel/generic/ArrayTypeTest.java b/src/test/java/org/apache/bcel/generic/ArrayTypeTest.java
new file mode 100644
index 00000000..417afc4d
--- /dev/null
+++ b/src/test/java/org/apache/bcel/generic/ArrayTypeTest.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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 org.apache.bcel.generic;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import org.junit.jupiter.api.Test;
+
+public class ArrayTypeTest {
+
+    @Test
+    public void testGetBasicType() {
+        final BasicType type = Type.BYTE;
+        final ArrayType objectType = new ArrayType(type, 1);
+        assertEquals(type, objectType.getBasicType());
+    }
+
+    @Test
+    public void testGetDimensions() {
+        final int dimensions = 1;
+        final ArrayType objectType = new ArrayType(Type.BYTE, dimensions);
+        assertEquals(dimensions, objectType.getDimensions());
+    }
+
+    @Test
+    public void testGetElementType() {
+        final BasicType type = Type.BYTE;
+        final ArrayType objectType = new ArrayType(Type.BYTE, 1);
+        assertEquals(type, objectType.getElementType());
+    }
+
+    @Test
+    public void testGetSignature() {
+        final ArrayType objectType = new ArrayType(Type.BYTE, 1);
+        assertEquals("[B", objectType.getSignature());
+        assertEquals(byte[].class.getName(), objectType.getSignature());
+    }
+
+    @Test
+    public void testGetSize() {
+        final ArrayType objectType = new ArrayType(Type.BYTE, 1);
+        assertEquals(1, objectType.getSize());
+    }
+
+    @Test
+    public void testGetType() {
+        final ArrayType objectType = new ArrayType(Type.BYTE, 1);
+        assertEquals(13, objectType.getType());
+    }
+
+}