<PackageReference Include="Relativity.Server.Testing.Framework.Api.SDK" Version="5000.1.0" />

TestArrangementDomain

public class TestArrangementDomain
Represents the domain (root) of test arrangement functionality.

Gets the current test arrangement context.

Initializes a new instance of the TestArrangementDomain class.

public TestArrangementDomain<TEntity> Create<TEntity>()

Creates the entity of specified type.

public TestArrangementDomain<TEntity> Create<TEntity>(out TEntity entity)

Creates the entity of specified type and sets it to entity out parameter.

public TestArrangementDomain<TEntity> Create<TEntity>(TEntity entity)

Creates the specified entity.

public TestArrangementDomainOfEnumerable<TEntity> Create<TEntity>(int count)

Creates multiple entities of the specified type.

public TestArrangementDomainOfEnumerable<TEntity> Create<TEntity>(int count, out IEnumerable entities)

Creates multiple entities of the specified type.

public TestArrangementDomainOfEnumerable<TEntity> Create<TEntity>(int count, out List entities)

Creates multiple entities of the specified type.

public TestArrangementDomainOfEnumerable<TEntity> Create<TEntity>(int count, out TEntity entities)

Creates multiple entities of the specified type.

public TestArrangementDomainOfEnumerable<TEntity> Create<TEntity>(int count, TEntity entity)

Creates multiple entities of the specified type using entity as template.

public TestArrangementDomainOfEnumerable<TEntity> Create<TEntity>(IEnumerable<TEntity> entities)

Creates the specified entities.

public TestArrangementDomain<TEntity> For<TEntity>(TEntity entity)

Creates the domain for the specified entity.

public TestArrangementDomain<TEntity> ForWorking<TEntity>()

Creates the domain for working entity of specified type. Get the working entity using the Working<T> method.

Creates the domain for working workspace. Get the working workspace using the Working<T> method.