DeveloperOnlineContentLoaderTests ClassDelta Engine Documentation
Inheritance Hierarchy

System Object
  DeltaEngine.Content.Online.Tests DeveloperOnlineContentLoaderTests

Namespace: DeltaEngine.Content.Online.Tests
Assembly: DeltaEngine.Content.Online.Tests (in DeltaEngine.Content.Online.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public class DeveloperOnlineContentLoaderTests

The DeveloperOnlineContentLoaderTests type exposes the following members.

Constructors

  NameDescription
Public methodDeveloperOnlineContentLoaderTests
Initializes a new instance of the DeveloperOnlineContentLoaderTests class
Top
Methods

  NameDescription
Public methodConnectToOnlineContentServiceWithoutExistingContent
Top
Examples

[Test]
public void ConnectToOnlineContentServiceWithoutExistingContent()
{
    if (Directory.Exists("Content"))
        Directory.Delete("Content", true);
    bool ready = false;
    var connection = new OnlineServiceConnection(new MockSettings(),
        () => { throw new ConnectionTimedOut(); });
See Also