-
```
What steps will reproduce the problem?
I have something like the following code:
public interface IStore
{
T GetBy(Func criteria);
}
public class UserFinder
{
private IStore _store;
…
-
```
I know this isn't exactly a recommended practice, but for the sake of
consistency, here's what I came across:
1 - Put this code in the same assembly (heck, put it in the same file already)
publi…
-
```
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…
-
```
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…
-
```
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…
-
Hi
Great project , hats off :+1:
Is there a way we can mock the device information like id , build etc in the chrome ext ?
-
```
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…
-
```
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…
-
At the moment, it's not clear how to test a Tide application. Ideally we can build on best practices in the Rust ecosystem, including the stories worked out in other frameworks like Rocket.