public function testGetSetExported()
 {
     $expected = true;
     $this->assertFalse($this->instance->isExported());
     $this->assertInstanceOf(Questionnaire::class, $this->instance->setExported($expected));
     $this->assertEquals($expected, $this->instance->isExported());
 }