public function testGetPercentageCompletionsProvidedPostcode()
 {
     $total = 60;
     $num = (int) rand(1, 50);
     $expected = round($num / $total * 100, AnalyticsExport::PERCENTAGE_PRECISION);
     $this->assertInstanceOf(AnalyticsExport::class, $this->instance->setCompletions($total));
     $this->assertEquals($total, $this->instance->getCompletions());
     $this->assertInstanceOf(AnalyticsExport::class, $this->instance->setProvidedPostCodes($num));
     $this->assertEquals($num, $this->instance->getProvidedPostCodes());
     $this->assertEquals($expected, $this->instance->getPercentageCompletionsProvidedPostCode());
 }