Forum Discussion

AECTWIN11's avatar
AECTWIN11
New Contributor
6 years ago
Solved

Actual Data file not populating

I've created a test case via VBScript which is comparing actual data from an application table to an expected results csv file.

 

The test is creating the actual data file but it's empty.   I've verified that I have the correct table name entered into my objects control file.

 

The only place I can see in the code that references actual data is:

Dim strDATA_TABLE_ACTUAL

call OBJ_Table_CopyToCSV( "PAGE,ACTUAL TABLE", strDATA_TABLE_ACTUAL )

call func_Compare_ActualvsExpected( strDATA_TABLE_ACTUAL, strDATA_TABLE_EXPECTED )

 

Does anyone know if there is another place in the code that needs to be updated?   This may be my company framework specific, but I thought I'd ask before contacting my developer.

 

Thanks

Amy

 

 

 

  • This does look framework specific.  Specifically, if I'm reading this correctl,y OBJ_Table_CopyToCSV is a custom function that is taking the data and dumping it out to a CSV file.  So, something may not be operating correctly there.  This, I think, you need to take to your developer.

2 Replies

  • tristaanogre's avatar
    tristaanogre
    Esteemed Contributor

    This does look framework specific.  Specifically, if I'm reading this correctl,y OBJ_Table_CopyToCSV is a custom function that is taking the data and dumping it out to a CSV file.  So, something may not be operating correctly there.  This, I think, you need to take to your developer.

    • AECTWIN11's avatar
      AECTWIN11
      New Contributor

      Thanks so much for the quick response!  I appreciate it.