1dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes/* Licensed to the Apache Software Foundation (ASF) under one or more
2dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * contributor license agreements.  See the NOTICE file distributed with
3dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * this work for additional information regarding copyright ownership.
4dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * The ASF licenses this file to You under the Apache License, Version 2.0
5dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * (the "License"); you may not use this file except in compliance with
6dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * the License.  You may obtain a copy of the License at
7dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes *
8dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes *     http://www.apache.org/licenses/LICENSE-2.0
9dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes *
10dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * Unless required by applicable law or agreed to in writing, software
11dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
12dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * See the License for the specific language governing permissions and
14dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * limitations under the License.
15dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes */
16e5fea3d504609d22337a5311d3ce0e72314bceeeNarayan Kamathpackage org.apache.harmony.tests.java.nio.channels;
17dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
18dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughesimport java.nio.channels.OverlappingFileLockException;
19dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
20dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughesimport junit.framework.TestCase;
21dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
22dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughesimport org.apache.harmony.testframework.serialization.SerializationTest;
23dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
24dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes/**
25dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes * Tests for OverlappingFileLockException
26dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes */
27dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughespublic class OverlappingFileLockExceptionTest extends TestCase {
28dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
29dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    /**
30dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes     * @tests {@link java.nio.channels.OverlappingFileLockException#OverlappingFileLockException()}
31dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes     */
32dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    public void test_Constructor() {
33dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes        OverlappingFileLockException e = new OverlappingFileLockException();
34dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes        assertNull(e.getMessage());
35dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes        assertNull(e.getLocalizedMessage());
36dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes        assertNull(e.getCause());
37dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    }
38dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
39dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    /**
40dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes     * @tests serialization/deserialization compatibility.
41dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes     */
42dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    public void testSerializationSelf() throws Exception {
43dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
44dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes        SerializationTest.verifySelf(new OverlappingFileLockException());
45dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    }
46dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
47dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    /**
48dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes     * @tests serialization/deserialization compatibility with RI.
49dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes     */
50dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    public void testSerializationCompatibility() throws Exception {
51dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes
52dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes        SerializationTest
53dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes                .verifyGolden(this, new OverlappingFileLockException());
54dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes    }
55dce2b2fa9d6b26414a8d5a55918e4d7ca2ab1baaElliott Hughes}
56