Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0c5fb91ee914c830aa267e838e769caa4e3b5a5d (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
/*******************************************************************************
 * Copyright (c) 2013 protos software gmbh (http://www.protos.de).
 * 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:
 * 		Henrik Rentz-Reichert (initial contribution)
 * 
 *******************************************************************************/

package org.eclipse.etrice.abstractexec.behavior.tests;

import static org.junit.Assert.assertEquals;

import org.junit.Before;
import org.junit.Test;

/**
 * @author Henrik Rentz-Reichert
 *
 */
public class Test417433 extends TestBase {

	@Before
	public void setUp() {
		prepare("bug417433.room");
	}
	
	@Test
	public void testSomething() {
		assertEquals("number of infos", 3, getInfoMsgToDiagnostic().size());
		assertEquals("number of warnings", 0, getWarningMsgToDiagnostic().size());
		assertEquals("number of errors", 0, getErrorMsgToDiagnostic().size());
	}

}

Back to the top