ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
assAnswerMultipleResponseImageTest.php
Go to the documentation of this file.
1 <?php
2 
27 {
28  protected $backupGlobals = false;
29 
30  protected function setUp(): void
31  {
32  chdir(__DIR__ . '/../../../../');
33  }
34 
36  {
37  $instance = new ASS_AnswerMultipleResponseImage();
38 
39  $this->assertInstanceOf(ASS_AnswerMultipleResponseImage::class, $instance);
40  }
41 
42  public function test_setGetImage(): void
43  {
44  $instance = new ASS_AnswerMultipleResponseImage();
45  $expected = 'c:\image.jpg';
46 
47  $instance->setImage($expected);
48  $actual = $instance->getImage();
49 
50  $this->assertEquals($expected, $actual);
51  }
52 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class assBaseTestCase.
ASS_AnswerBinaryStateImage is a class for answers with a binary state indicator (checked/unchecked, set/unset) and an image file.