Skip to content

Add support for exceptions from method call (where method is in the same assembly) #1

@r30e

Description

@r30e

As a developer, I wish to be informed that the method I am calling may throw an exception.
E.g.

public void Foo(){
  Bar(); // <-- I would expect an error here
}

[Throws(typeof(NotImplementedException))]
public void Bar(){
  throw new NotImplementedException();
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions