Package org.aniszczyk.minerva.core.tests

Source Code of org.aniszczyk.minerva.core.tests.SimpleTest

/*******************************************************************************
* Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com>
*
* 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
*******************************************************************************/
package org.aniszczyk.minerva.core.tests;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;

import org.aniszczyk.minerva.core.Model;
import org.junit.Test;

public class SimpleTest {
 
  @Test
  public void simpleTest() {
    Model model = new Model();
    assertNull(model.getId());
    model.setId("id");
    assertEquals("id", model.getId());
  }

}
TOP

Related Classes of org.aniszczyk.minerva.core.tests.SimpleTest

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.