@istest
class SchedulableExportHistoryBatchProcessTest {
    public static testMethod void testschedule() {
        Test.StartTest();
        SchedulableExportHistoryBatchProcess fileProcess = new SchedulableExportHistoryBatchProcess();
        String sch = '0 0 * * * ?';
        system.schedule('Test status Check', sch, fileProcess);
        Test.stopTest();
    }
}
