Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To make it easier to structure the tests (as described in this video by Kevlin Henney: https://www.youtube.com/watch?v=tWn8RA_DEic) it would be great to allow nesting of contexts:
create or replace package queue_spec as -- %suite(Queue Spec) -- %context(a_not_empty_queue) -- %context(that_is_not_full) -- %test procedure becomes_longer_when_non_null_value_enqueued; -- %test procedure becomes_full_when_enqueued_up_to_capacity; -- %endcontext -- %context(that_is_full) -- %test procedure ignores_further_enqueued_values; -- %test procedure becomes_non_full_when_dequeued; -- %endcontext -- %test procedure dequeues_values_in_order_enqueued; -- %endcontext end;
Leading to
Queue Spec a_not_empty_queue that_is_not_full becomes_longer_when_non_null_value_enqueued [SUCCESS] becomes_full_when_enqueued_up_to_capacity [SUCCESS] that_is_full ignores_further_enqueued_values [SUCCESS] becomes_non_full_when_dequeued [SUCCESS] dequeues_values_in_order_enqueued [SUCCESS]
What to do in case of missing endcontext? Write a warning
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
To make it easier to structure the tests (as described in this video by Kevlin Henney: https://www.youtube.com/watch?v=tWn8RA_DEic) it would be great to allow nesting of contexts:
Leading to
What to do in case of missing endcontext?
Write a warning
The text was updated successfully, but these errors were encountered: