Skip to main content
summaryrefslogtreecommitdiffstats
blob: 85317155309f1710a32779c8f0d6f920f99d76da (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
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2008, 2012 Obeo.
 * 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:
 *     Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.acceleo.query.ide.tests.delegates;

import org.eclipse.acceleo.query.delegates.AQLInvocationDelegateFactory;
import org.eclipse.acceleo.query.delegates.AQLQueryDelegateFactory;
import org.eclipse.acceleo.query.delegates.AQLSettingDelegateFactory;
import org.eclipse.acceleo.query.delegates.AQLValidationDelegate;
import org.eclipse.emf.ecore.EOperation;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.EValidator;
import org.eclipse.emf.ecore.util.QueryDelegate;
import org.junit.Test;

import static org.junit.Assert.assertTrue;

public class DelegatesRegistrationTests {

	@Test
	public void validationDelegateRegistration() {
		assertTrue(EValidator.ValidationDelegate.Registry.INSTANCE
				.getValidationDelegate("http://www.eclipse.org/acceleo/query/1.0") instanceof AQLValidationDelegate);
	}

	@Test
	public void settingDelegateFactoryRegistration() {
		assertTrue(EStructuralFeature.Internal.SettingDelegate.Factory.Registry.INSTANCE
				.getFactory("http://www.eclipse.org/acceleo/query/1.0") instanceof AQLSettingDelegateFactory);
	}

	@Test
	public void invocationDelegateFactoryRegistration() {
		assertTrue(EOperation.Internal.InvocationDelegate.Factory.Registry.INSTANCE
				.getFactory("http://www.eclipse.org/acceleo/query/1.0") instanceof AQLInvocationDelegateFactory);
	}

	@Test
	public void queryDelegateFactoryRegistration() {
		assertTrue(QueryDelegate.Factory.Registry.INSTANCE
				.getFactory("http://www.eclipse.org/acceleo/query/1.0") instanceof AQLQueryDelegateFactory);
	}

}

Back to the top