-
I have a promise chain that calls two different aws functions sequentially:
```
var dynamo = new AWS.DynamoDB.DocumentClient();
dynamo.get(params).promise()
.then((data) => {
...
return dy…
-
- [ ] Check if using [pyfakefs](https://github.com/jmcgeheeiv/pyfakefs) or [systemfixtures](http://systemfixtures.readthedocs.io/en/latest/#filesystem) makes filesystem stuff easier.
- [ ] Check if u…
-
As far as I can tell, all IFirebaseServices are sealed and have internal constructors.
This presents us with the challenge of how we can test code, which uses the FirebaseAdminSdk, which contains v…
ghost updated
3 years ago
-
Hello,
I am wondering if it's possible to deal with a code which uses "S3 Select" feature.
S3 Select is an S3 feature to get contents with SQL query. It is, in general, a tough challenge with a…
-
Does chronobreak support chrono?
-
Hello,
I'm trying to unit test my solution using Moq framework, but since Moq cannot mock non-virtual type members I always get an Unsupported Error Type. Is there any work around for Mock MangoPayAp…
-
Something similar to how it is done in flutter with - `TestDefaultBinaryMessengerBinding.instance!.defaultBinaryMessenger.setMockMethodCallHandler(_methodChannel, _methodHandler);`
Say for example,…
daadu updated
2 years ago
-
I use IConfigurationManager to mock configuration, but I found no easy way to mock values stored in configuration sections.
For example, I want to change session timeout during test.
I get session t…
-
I'm trying to mock a `POST` call that would return a `401 Unauthorized` error for some testing. Any way to do this?
-
I've found an issue while setting up tests and trying to retrieve multiple responses after mocking the results. No matter how you set it up, your response will be provided only the first time, any add…