| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 8 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 12 | public function testSetFormat()  | 
            ||
| 13 |     { | 
            ||
| 14 | $report = new BaseReport();  | 
            ||
| 15 | $this->assertNull($report->getRequest()->Format);  | 
            ||
| 16 | /* @var string (See BingAds SDK documentation) */  | 
            ||
| 17 | $report->setFormat(ReportFormat::Csv);  | 
            ||
| 18 | $this->assertEquals(ReportFormat::Csv, $report->getRequest()->Format);  | 
            ||
| 19 | }  | 
            ||
| 20 | |||
| 39 |