Changes between Version 3 and Version 4 of Testing and Validation


Ignore:
Timestamp:
05/13/26 17:51:33 (13 days ago)
Author:
193284
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Testing and Validation

    v3 v4  
    9999Returns FALSE if the photographer already has a conflicting booking.
    100100
    101 == 5. Wedding Financial Summary View Test ==
     101== 5. Band Availability Function Test ==
     102
     103=== SQL Code ===
     104
     105{{{
     106#!sql
     107SELECT is_band_available(
     108    1,
     109    '2026-06-20',
     110    '18:00',
     111    '22:00'
     112);
     113}}}
     114
     115=== Expected Result ===
     116
     117Returns FALSE if the band already has a conflicting booking.
     118
     119== 6. Wedding Financial Summary View Test ==
    102120
    103121=== SQL Code ===
     
    113131Displays wedding budget information, total booking expenses, and remaining budget calculations.
    114132
    115 == 6. RSVP Overview View Test ==
     133== 7. RSVP Overview View Test ==
    116134
    117135=== SQL Code ===
     
    127145Displays grouped RSVP statistics for guests and events.
    128146
    129 == 7. Constraint Validation Test ==
     147== 8. Constraint Validation Test ==
    130148
    131149=== SQL Code ===