Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4f5ff38b667fd61b4d5b0779106ae90df3d2cb6b (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2008, 2015 Oracle. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0, which accompanies this distribution
 * and is available at http://www.eclipse.org/legal/epl-v10.html.
 * 
 * Contributors:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.common.utility.tests.internal.reference;

import org.eclipse.jpt.common.utility.internal.ObjectTools;
import org.eclipse.jpt.common.utility.internal.reference.SimpleObjectReference;
import org.eclipse.jpt.common.utility.reference.ModifiableObjectReference;
import org.eclipse.jpt.common.utility.reference.ObjectReference;

@SuppressWarnings("nls")
public class SimpleObjectReferenceTests
	extends ModifiableObjectReferenceTests
{
	public SimpleObjectReferenceTests(String name) {
		super(name);
	}

	@Override
	protected ModifiableObjectReference<String> buildObjectReference() {
		return new SimpleObjectReference<>();
	}

	@Override
	protected ModifiableObjectReference<String> buildObjectReference(String value) {
		return new SimpleObjectReference<>(value);
	}

	public void testClone() {
		ObjectReference<String> or = this.buildObjectReference("foo");
		@SuppressWarnings("unchecked")
		ObjectReference<String> clone = (ObjectReference<String>) ObjectTools.execute(or, "clone");
		assertEquals("foo", clone.getValue());
		assertNotSame(or, clone);
	}
}

Back to the top