Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Exemplos

Executa em Modo All:
@TestFixture() // Como "ALL" é o valor default, não há necessidade de informá-lo

...

@TestFixture(suite="all")


Criando uma suite:
@TestFixture(suite="minha_suite")

...

TipoValor Default
character"yes"

Exemplos


Abre Thread:
@TestFixture() // Como "yes" é o valor default, não há necessidade de informá-lo

...

@TestFixture(thread="yes")


NÃO abre Thread:
@TestFixture(thread="no")

...

TipoValor Default
numeric100

Exemplos


Prioridade ALTA:
@TestFixture(priority=0)


Prioridade BAIXA:
@TestFixture(priority=999)

...

Exemplos


Executa em Modo All:
@TestFixture() // Como .T. é o valor default, não há necessidade de informá-lo

...

@TestFixture(rwa=.T.)


NÃO executa em Modo All:
@TestFixture(runWithAll=.F.)

...