You are here

function tfa_test_totp_create in Two-factor Authentication (TFA) 7.2

Create test TOTP object.

Parameters

array $context: TFA context.

Return value

TfaTestTotp Created TfaTestTotp object.

File

tests/tfa_test.module, line 103
A mock module for testing TFA.

Code

function tfa_test_totp_create(array $context) {
  return new TfaTestTotp($context);
}