BodyTests TestBodyDefaultIsNotStatic Method Delta Engine Documentation

Namespace: DeltaEngine.Physics2D.Farseer.Tests
Assembly: DeltaEngine.Physics2D.Farseer.Tests (in DeltaEngine.Physics2D.Farseer.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void TestBodyDefaultIsNotStatic()
Examples

[Test]
public void TestBodyDefaultIsNotStatic()
{
    var body = physics.CreateCircle(45.0f);
    Assert.IsFalse(body.IsStatic);
}
See Also