Changes between Version 2 and Version 3 of Testing and Validation


Ignore:
Timestamp:
05/12/26 02:16:40 (2 weeks ago)
Author:
193284
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Testing and Validation

    v2 v3  
    1111=== SQL Code ===
    1212
    13 <syntaxhighlight lang="sql">
     13{{{
     14#!sql
    1415INSERT INTO venue_booking(
    1516    "date",
     
    3031    1
    3132);
    32 </syntaxhighlight>
     33}}}
    3334
    3435=== Expected Result ===
     
    4041=== SQL Code ===
    4142
    42 <syntaxhighlight lang="sql">
     43{{{
     44#!sql
    4345INSERT INTO attendance(
    4446    status,
     
    5557    1
    5658);
    57 </syntaxhighlight>
     59}}}
    5860
    5961=== Expected Result ===
     
    6567=== SQL Code ===
    6668
    67 <syntaxhighlight lang="sql">
     69{{{
     70#!sql
    6871SELECT is_venue_available(
    6972    1,
     
    7275    '22:00'
    7376);
    74 </syntaxhighlight>
     77}}}
    7578
    7679=== Expected Result ===
     
    8285=== SQL Code ===
    8386
    84 <syntaxhighlight lang="sql">
     87{{{
     88#!sql
    8589SELECT is_photographer_available(
    8690    1,
     
    8993    '22:00'
    9094);
    91 </syntaxhighlight>
     95}}}
    9296
    9397=== Expected Result ===
     
    99103=== SQL Code ===
    100104
    101 <syntaxhighlight lang="sql">
     105{{{
     106#!sql
    102107SELECT *
    103108FROM vw_wedding_financial_summary;
    104 </syntaxhighlight>
     109}}}
    105110
    106111=== Expected Result ===
     
    112117=== SQL Code ===
    113118
    114 <syntaxhighlight lang="sql">
     119{{{
     120#!sql
    115121SELECT *
    116122FROM vw_rsvp_overview;
    117 </syntaxhighlight>
     123}}}
    118124
    119125=== Expected Result ===
     
    125131=== SQL Code ===
    126132
    127 <syntaxhighlight lang="sql">
     133{{{
     134#!sql
    128135INSERT INTO event_rsvp(
    129136    guest_id,
     
    136143    'invalid_status'
    137144);
    138 </syntaxhighlight>
     145}}}
    139146
    140147=== Expected Result ===