All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.umlg.tests.primitive.TestBooleanPrimitive Maven / Gradle / Ivy

There is a newer version: 2.0.16
Show newest version
package org.umlg.tests.primitive;

import org.junit.Assert;
import org.junit.Test;
import org.umlg.concretetest.God;
import org.umlg.runtime.test.BaseLocalDbTest;

public class TestBooleanPrimitive extends BaseLocalDbTest {
	
	@Test
	public void testBooleanDefaultsToFalse() {
		God g = new God(true);
		g.setName("G");
        db.commit();
		Assert.assertFalse(g.getTestBoolean());
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy