Skip to content

Possible Error in the Testing class #11

@gmendezm

Description

@gmendezm

In this class: https://github.com/wtchoi/SwiftHand/tree/master/src/back-end/src/main/java/edu/berkeley/wtchoi/swift/testing

You have (lines 150-154):

protected void invokeObserverOnMainTestEnd(){
    for(TestingObserver<Request, Result, State> observer:observers){
        observer.onMainTestBegin();
    }
}

But should be

protected void invokeObserverOnMainTestEnd(){
    for(TestingObserver<Request, Result, State> observer:observers){
        observer.onMainTestEnd();
    }
}

Line 152 modified.

Finded by Alberto Tablada.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions