19 declare(strict_types=1);
29 protected function setUp(): void
35 $this->createMock(ilDBInterface::class),
42 $this->assertInstanceOf(ilTestResultsToXML::class, $this->testObj);
47 $this->testObj->setIncludeRandomTestQuestionsEnabled(
false);
48 $this->assertFalse($this->testObj->isIncludeRandomTestQuestionsEnabled());
50 $this->testObj->setIncludeRandomTestQuestionsEnabled(
true);
51 $this->assertTrue($this->testObj->isIncludeRandomTestQuestionsEnabled());
testIncludeRandomTestQuestionsEnabled()
ilTestResultsToXML $testObj
Class ilTestResultsToXMLTest.
test_instantiateObject_shouldReturnInstance()