Changes between Version 4 and Version 5 of Testing and Validation


Ignore:
Timestamp:
05/13/26 20:09:52 (13 days ago)
Author:
193284
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Testing and Validation

    v4 v5  
    145145Displays grouped RSVP statistics for guests and events.
    146146
    147 == 8. Constraint Validation Test ==
     147== 8. Vendor Booking Overview View Test ==
     148
     149=== SQL Code ===
     150
     151{{{
     152#!sql
     153SELECT *
     154FROM vw_vendor_booking_overview;
     155}}}
     156
     157=== Expected Result ===
     158
     159Displays venue, photographer, and band booking information for weddings.
     160
     161== 9. Upcoming Weddings View Test ==
     162
     163=== SQL Code ===
     164
     165{{{
     166#!sql
     167SELECT *
     168FROM vw_upcoming_weddings;
     169}}}
     170
     171=== Expected Result ===
     172
     173Displays weddings scheduled for future dates only.
     174
     175== 10. RSVP Summary Procedure Test ==
     176
     177=== SQL Code ===
     178
     179{{{
     180#!sql
     181CALL generate_rsvp_summary(1);
     182}}}
     183
     184=== Expected Result ===
     185
     186Displays NOTICE messages containing accepted, declined, and pending RSVP counts for the selected event.
     187
     188== 11. Constraint Validation Test ==
    148189
    149190=== SQL Code ===