Skip to content
New issue

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

[Feature Request] Allows tests inheritance #4

Open
hyyan opened this issue Feb 26, 2020 · 0 comments
Open

[Feature Request] Allows tests inheritance #4

hyyan opened this issue Feb 26, 2020 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@hyyan
Copy link
Member

hyyan commented Feb 26, 2020

Scenario

class public UnitTest1

    rem @Test
    method public void test1()
        Assert.Equals(BBjAPI.TRUE , BBjAPI.TRUE)
    methodend
classend


class public UnitTest2 extends UnitTest1

    rem @Test
    method public void test2()
        Assert.Equals(BBjAPI.TRUE , BBjAPI.TRUE)
    methodend
classend

When running the UnitTest2, the tests defined in the parent UnitTest1 should be executed too

@hyyan hyyan changed the title Allows tests inheritance [Feature Request] Allows tests inheritance Mar 2, 2020
@SebastianAdams SebastianAdams added the enhancement New feature or request label Mar 12, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants