mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
17 lines
433 B
PHP
17 lines
433 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\UserForms\Tests\Model\EditableFormField;
|
||
|
|
||
|
use SilverStripe\Dev\SapphireTest;
|
||
|
use SilverStripe\UserForms\Model\EditableFormField\EditableCountryDropdownField;
|
||
|
|
||
|
class EditableCountryDropdownFieldTest extends SapphireTest
|
||
|
{
|
||
|
public function testGetIcon()
|
||
|
{
|
||
|
$field = new EditableCountryDropdownField;
|
||
|
|
||
|
$this->assertContains('/images/editabledropdown.png', $field->getIcon());
|
||
|
}
|
||
|
}
|