MessagesTests ClassDelta Engine Documentation
Inheritance Hierarchy

System Object
  DeltaEngine.Platforms TestWithMocksOrVisually
    CreepyTowers.Tests MessagesTests

Namespace: CreepyTowers.Tests
Assembly: CreepyTowers.Tests (in CreepyTowers.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public class MessagesTests : TestWithMocksOrVisually

The MessagesTests type exposes the following members.

Constructors

  NameDescription
Public methodMessagesTests
Initializes a new instance of the MessagesTests class
Top
Methods

  NameDescription
Protected methodAdvanceTimeAndUpdateEntities (Inherited from TestWithMocksOrVisually.)
Public methodCheckBathRoomMessages
Public methodCheckChildrensRoomMessages
Public methodCheckLivingRoommMessages
Public methodInitializeResolver (Inherited from TestWithMocksOrVisually.)
Protected methodRegisterMock T  (Inherited from TestWithMocksOrVisually.)
Protected methodResolve T  (Inherited from TestWithMocksOrVisually.)
Protected methodRunAfterFirstFrame (Inherited from TestWithMocksOrVisually.)
Public methodRunTestAndDisposeResolverWhenDone (Inherited from TestWithMocksOrVisually.)
Top
Properties

  NameDescription
Protected propertyIsMockResolver (Inherited from TestWithMocksOrVisually.)
Top
Examples

[Test, CloseAfterFirstFrame]
public void CheckChildrensRoomMessages()
{
    var msges = DialoguesXml.KidsRoomMessages();
    Assert.AreEqual(7, msges.Length);
}
[Test, CloseAfterFirstFrame]
public void CheckBathRoomMessages()
{
    var msges = DialoguesXml.BathRoomMessages();
    Assert.AreEqual(2, msges.Length);
}
[Test, CloseAfterFirstFrame]
public void CheckLivingRoommMessages()
{
    var msges = DialoguesXml.LivingRoomMessages();
    Assert.AreEqual(2, msges.Length);
}
See Also