mirror of
https://git.d3data.de/3rdParty/captcha-module.git
synced 2024-11-01 12:54:37 +01:00
17 lines
389 B
PHP
17 lines
389 B
PHP
|
<?php
|
||
|
/**
|
||
|
* #PHPHEADER_OECAPTCHA_LICENSE_INFORMATION#
|
||
|
*/
|
||
|
|
||
|
require_once __DIR__ . '/../../../CaptchaTestCase.php';
|
||
|
|
||
|
class oeCaptchaWArticleDetailsTest extends CaptchaTestCase
|
||
|
{
|
||
|
public function testGetCaptcha()
|
||
|
{
|
||
|
$articleDetails = oxNew('oxwarticledetails');
|
||
|
$captcha = $articleDetails->getCaptcha();
|
||
|
$this->assertInstanceOf("oeCaptcha", $captcha);
|
||
|
}
|
||
|
}
|