public function testGetters()
 {
     $this->assertEquals($this->_sendBulkSale->getColsHeading(), "string");
     $this->assertEquals($this->_sendBulkSale->getExportBaseFilename(), "string");
     $this->assertEquals($this->_sendBulkSale->getExportStoragePath(), "string");
     $this->assertEquals($this->_sendBulkSale->getExportFilename(), "string");
     $this->assertEquals($this->_sendBulkSale->getExportFilePath(), "string");
 }
        }
    }
}
?>

<div class="container">
    <div class="row">
        <div class="col-md-9">
            <?php 
if ($isFileValid && !$hasConfirmed) {
    echo '<form class="form" method="POST" action="">';
    echo '<div class="feefo-confirm">';
    echo '<h3>Please confirm your upload</h3>';
    echo '<table>';
    echo '<tr>';
    foreach ($feefoInform->getColsHeading() as $heading) {
        echo '<td>' . $heading . '</td>';
    }
    echo '</tr>';
    foreach ($entries as $entry) {
        echo '<tr>';
        foreach ($entry as $col) {
            echo '<td>' . $col . '</td>';
        }
        echo '<tr>';
    }
    echo '</table>';
    echo '<input type="hidden" name="hasConfirmed" value="true">';
    echo '<input type="hidden" name="filename" value="' . $prepResult['filename'] . '">';
    echo '<input class="btn btn-success" type="submit" name="bulk_feefo_order_upload_confirm" value="Yes, all good!">';
    echo '</div>';