We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example:
In testcase.test.brs:
testcase.test.brs
_brs_.mockComponent("DependencyComponent", { helloWorld: function() return m.top.subtype() end function })
In MyComponent.brs:
MyComponent.brs
dep = createObject("roSGNode", "dependencyComponent") print dep.helloWorld() ' => "MyComponent"
It seems like the environment isn't getting seeded correctly for a member method.
The text was updated successfully, but these errors were encountered:
just want to add a note that brs has the same behavior if use dep.callFunc("helloWorld").
brs
dep.callFunc("helloWorld")
Sorry, something went wrong.
No branches or pull requests
Example:
In
testcase.test.brs
:In
MyComponent.brs
:It seems like the environment isn't getting seeded correctly for a member method.
The text was updated successfully, but these errors were encountered: