blob: bafa0909d0c4680a867016776451cde709e11455 [file] [log] [blame]
/*
* 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 tests.api.java.lang.ref;
import dalvik.annotation.TestTargets;
import dalvik.annotation.TestLevel;
import dalvik.annotation.TestTargetNew;
import dalvik.annotation.TestTargetClass;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;
@TestTargetClass(WeakReference.class)
public class WeakReferenceTest extends junit.framework.TestCase {
static Boolean bool;
protected void doneSuite() {
bool = null;
}
/**
* @tests java.lang.ref.WeakReference#WeakReference(java.lang.Object,
* java.lang.ref.ReferenceQueue)
*/
@TestTargetNew(
level = TestLevel.COMPLETE,
notes = "",
method = "WeakReference",
args = {java.lang.Object.class, java.lang.ref.ReferenceQueue.class}
)
public void test_ConstructorLjava_lang_ObjectLjava_lang_ref_ReferenceQueue() {
ReferenceQueue rq = new ReferenceQueue();
bool = new Boolean(true);
try {
// Allow the finalizer to run to potentially enqueue
WeakReference wr = new WeakReference(bool, rq);
assertTrue("Initialization failed.", ((Boolean) wr.get())
.booleanValue());
} catch (Exception e) {
fail("Exception during test : " + e.getMessage());
}
// need a reference to bool so the jit does not optimize it away
assertTrue("should always pass", bool.booleanValue());
boolean exception = false;
try {
new WeakReference(bool, null);
} catch (NullPointerException e) {
exception = true;
}
assertTrue("Should not throw NullPointerException", !exception);
}
/**
* @tests java.lang.ref.WeakReference#WeakReference(java.lang.Object)
*/
@TestTargetNew(
level = TestLevel.COMPLETE,
notes = "",
method = "WeakReference",
args = {java.lang.Object.class}
)
public void test_ConstructorLjava_lang_Object() {
bool = new Boolean(true);
try {
WeakReference wr = new WeakReference(bool);
// Allow the finalizer to run to potentially enqueue
Thread.sleep(1000);
assertTrue("Initialization failed.", ((Boolean) wr.get())
.booleanValue());
} catch (Exception e) {
fail("Exception during test : " + e.getMessage());
}
// need a reference to bool so the jit does not optimize it away
assertTrue("should always pass", bool.booleanValue());
}
protected void setUp() {
}
protected void tearDown() {
}
}