-
_This issue was originally filed by @seaneagan_
---
See mailing list discussion:
https://groups.google.com/a/dartlang.org/forum/#!topic/misc/Vz_5qCDMXbU
-
```
The test case below can pass with mockito 1.8.5 but failed with mockito 1.9.5.
MethodNotFoundException occurs.
@Test
public void test_mock_object_with_multiple_interfaces() throws Except…
-
```
What steps will reproduce the problem?
1. Create interface with virtual operator (e.g. operator==())
2. Create mock class implementing interface
3. Create instance of mock class
What is the expec…
-
```
I was wondering whether JsTestDriver supports mocking AJAX/jQuery calls?
I'm currently testing against an environment which I cannot get access to,
so the only way to do so is to mock up the AJA…
-
```
What steps will reproduce the problem?
1. Create interface with virtual operator (e.g. operator==())
2. Create mock class implementing interface
3. Create instance of mock class
What is the expec…
-
```
What steps will reproduce the problem?
1. Create interface with virtual operator (e.g. operator==())
2. Create mock class implementing interface
3. Create instance of mock class
What is the expec…
-
```
What steps will reproduce the problem?
1. Unzip the eclipse project attached to the issue
2. Run the unit test.
What is the expected output? What do you see instead?
Expected the test to pass b…
-
New mocking facilities were added and need examples and documentation:
- [ ] Arguments.h
- [ ] CallSequence.h
- [ ] MethodCall.h
- [ ] VoidMethodCall.h
-
Choose a library for mocking objects within unit tests and wire it into the existing tests.
-
```
When I attempt to run a spec that mocks java.io.PrintStream I get an
IllegalArgumentException thrown:
class PrintSpec extends Specification {
private PrintStream printStream = Mock()
}
spoc…