Changes between Version 1 and Version 2 of BuildInstructions


Ignore:
Timestamp:
02/05/26 19:49:07 (3 weeks ago)
Author:
216009
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildInstructions

    v1 v2  
    9494=== Professor Use-case Test
    9595
    96 Launch program, select Professor (2).
     961. Launch program, select Professor (2).
    9797
    98 Assign a grade to a student for a subject.
     982. Assign a grade to a student for a subject.
    9999
    100 Verify that table Student_Subject has updated Final_Grade and Status = 'PASSED':
    101 
     1003. Verify that table Student_Subject has updated Final_Grade and Status = 'PASSED':
     101{{{
    102102SELECT * FROM Student_Subject WHERE Student_Id = <id> AND Subject_Id = <id>;
    103 
     103}}}
    104104
    105105=== Student Use-case Test
    106106
    107 Launch program, select Student (3).
     1071. Launch program, select Student (3).
    108108
    109 Enroll in a subject.
     1092. Enroll in a subject.
    110110
    111 Verify that table Student_Subject has a new row with Status = 'ENROLLED':
    112 
     1113. Verify that table Student_Subject has a new row with Status = 'ENROLLED':
     112{{{
    113113SELECT * FROM Student_Subject WHERE Student_Id = <id> AND Subject_Id = <id>;
    114 
     114}}}
    115115
    116116== Usernames and Passwords
    117117
    118 Database: Use your local PostgreSQL credentials.
     118- Database: Use your local PostgreSQL credentials.
    119119
    120 Application CLI: No usernames/passwords required for the prototype (IDs are selected from lists).
     120- Application CLI: No usernames/passwords required for the prototype (IDs are selected from lists).
    121121
    122122== Step-by-Step Mini Guide
    123123
    124 Launch application.
     1241. Launch application.
    125125
    126 Choose actor from main menu: Administrator / Professor / Student.
     1262. Choose actor from main menu: Administrator / Professor / Student.
    127127
    128 Follow on-screen menus:
     1283. Follow on-screen menus:
    129129
    130 Admin: Add University → Add Professor → Add Student
     130- Admin: Add University → Add Professor → Add Student
    131131
    132 Professor: Assign Grade → select professor → subject → student → grade
     132- Professor: Assign Grade → select professor → subject → student → grade
    133133
    134 Student: Enroll in Subject → select student → select subject
     134- Student: Enroll in Subject → select student → select subject
    135135
    136 Verify actions in the database using SELECT queries.
     1364. Verify actions in the database using SELECT queries.