Package org.eclipse.sapphire.tests.modeling.misc.t0007

Source Code of org.eclipse.sapphire.tests.modeling.misc.t0007.TestModelingMisc0007

/******************************************************************************
* Copyright (c) 2014 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:
*    Konstantin Komissarchik - initial implementation and ongoing maintenance
******************************************************************************/

package org.eclipse.sapphire.tests.modeling.misc.t0007;

import org.eclipse.sapphire.ElementList;
import org.eclipse.sapphire.modeling.Status;
import org.eclipse.sapphire.tests.SapphireTestCase;
import org.junit.Test;

/**
* Tests de-duplication of validation messages.
*
* @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a>
*/

public final class TestModelingMisc0007 extends SapphireTestCase
{
    @Test
   
    public void test() throws Exception
    {
        final TestRootElement root = TestRootElement.TYPE.instantiate();
        final ElementList<TestChildElement> children = root.getChildren();
       
        final TestChildElement x = children.insert();
        x.setId( "123" );
       
        final TestChildElement y = children.insert();
        y.setId( "123" );
       
        final Status status = root.validation();
       
        assertEquals( "Multiple occurrence of \"123\" were found", status.message() );
        assertEquals( 0, status.children().size() );
    }

}
TOP

Related Classes of org.eclipse.sapphire.tests.modeling.misc.t0007.TestModelingMisc0007

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.