Changes between Version 19 and Version 20 of LCS_specification


Ignore:
Timestamp:
04/15/2020 09:43:29 AM (6 years ago)
Author:
ally
Comment:

Changes to testing instruction format.

Legend:

Unmodified
Added
Removed
Modified
  • LCS_specification

    v19 v20  
    139139* From the {{{ database }}} folder of the LCSv1 web2py application directory. Run the following command to start sqlite3 command line.  
    140140{{{  
    141 sqlite3 storage.sqlite  
     141$ sqlite3 storage.sqlite  
    142142}}}  
    143143* Clear the data in {{{ closures }}} table in sqlite3 using the command  
    144144{{{  
    145 delete from closures;  
    146 }} 
     145>> delete from closures;  
     146}}} 
    147147* Download the attached file {{{ search_test_data.csv }}} and place it under the {{{ database }}} folder in LCSv1 web2py application directory.  
    148148* From the {{{ database }}} folder, run the following command to import the testing data.  
    149149{{{  
    150 .mode csv 
    151 .import search_test_data.csv closures  
     150>> .mode csv 
     151>> .import search_test_data.csv closures  
    152152}}} 
    153153* Run the following command to confirm the data is imported correctly.  
    154154{{{  
    155 select * from closures;  
     155>> select * from closures;  
    156156}}}  
    157 It should have all the entries from id 63 to 71 ( 9 entries total)  
     157   It should have all the entries from id 63 to 71 ( 9 entries total)  
    158158* Run the LCSv1 web2py application and open the search page on the browser.  
    159 * Start testing according to the test cases in the Test Case Table below.  
    160 Check if the search returns the correct entries.  
     159* Start testing according to the test cases in the Test Case Table below. Check if the search returns the correct entries.  
    161160 
    162161[[BR]]Database Records