Software Testing | Week 4 : Assignment 4
Week 4 : Assignment 4
Due date: 2022-08-24, 23:59 IST.
Assignment not submitted
Consider the graph below that depicts the calls to file handler methods open(), close(),read() and write(). Any procedure/method that uses these methods has to satisfy the following sequencing constraints: (1) An open(f) must be executed before every write(t), (2) An open(f) must be executed before every close(), (3) A write(f) may not be executed after a close() unless there is an open(f) in between, (4) A write(t) should be executed before every close().
Answer the following questions with reference to the sequencing constraints and the graph a method that uses these constraints.
Answer the following questions with reference to the sequencing constraints and the graph a method that uses these constraints.
Comments
Post a Comment