1/*
2 *  Licensed to the Apache Software Foundation (ASF) under one or more
3 *  contributor license agreements.  See the NOTICE file distributed with
4 *  this work for additional information regarding copyright ownership.
5 *  The ASF licenses this file to You under the Apache License, Version 2.0
6 *  (the "License"); you may not use this file except in compliance with
7 *  the License.  You may obtain a copy of the License at
8 *
9 *     http://www.apache.org/licenses/LICENSE-2.0
10 *
11 *  Unless required by applicable law or agreed to in writing, software
12 *  distributed under the License is distributed on an "AS IS" BASIS,
13 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 *  See the License for the specific language governing permissions and
15 *  limitations under the License.
16 */
17
18/**
19 * @author Vera Y. Petrashkova
20 */
21
22package org.apache.harmony.security.tests.java.security.interfaces;
23
24
25import java.math.BigInteger;
26import java.security.interfaces.DSAParams;
27import java.security.interfaces.DSAPrivateKey;
28
29import junit.framework.TestCase;
30
31/**
32 * Tests for <code>DSAPrivateKey</code> class field
33 */
34public class DSAPrivateKeyTest extends TestCase {
35
36    /**
37     * Constructor for DSAPrivateKeyTest.
38     *
39     * @param arg0
40     */
41    public DSAPrivateKeyTest(String arg0) {
42        super(arg0);
43    }
44
45    /**
46     * Test for <code>serialVersionUID</code> field
47     */
48    public void testField() {
49        checkDSAPrivateKey k = new checkDSAPrivateKey();
50        assertEquals("Incorrect serialVersionUID",
51                k.getSerVerUID(), //DSAPrivateKey.serialVersionUID
52                7776497482533790279L);
53    }
54
55    public class checkDSAPrivateKey implements DSAPrivateKey {
56        public String getAlgorithm() {
57            return "DSAPrivateKey";
58        }
59
60        public String getFormat() {
61            return "Format";
62        }
63
64        public byte[] getEncoded() {
65            return new byte[0];
66        }
67
68        public long getSerVerUID() {
69            return serialVersionUID;
70        }
71
72        public BigInteger getX() {
73            return null;
74        }
75
76        public DSAParams getParams() {
77            return null;
78        }
79    }
80}
81