-
Updated
Aug 2, 2022 - JavaScript
assertions
Here are 448 public repositories matching this topic...
-
Updated
Jul 1, 2022 - JavaScript
-
Updated
Jun 21, 2022 - JavaScript
-
Updated
Aug 3, 2022 - Java
Mock server DSL
I often use Kotest's mock server extensions for testing responses to external HTTP services, but the syntax is very Java-y. Consider adding a simple DSL wrapping the Mockserver DSL.
Eg,
before:
MockServerClient("localhost", server.port)
.`when`(
HttpRequest.request()
.withMethod("POST")
.withPath("/myindex/_count")
)
.Description
Nested AssertionScopes only report the outer-most scope reportables on failure. This is true regardless of whether the outer scope has any reportables -- i.e., if only the inner scope has reportables, nothing is reported.
Complete minimal example reproducing the issue
[TestMethod]
public void TestNestedAssertionScopes()
{
using (var outerScope = new AChecklist
- Feature request has a meaningful title
- I have searched the existing issues. See all issues
- I have tested using the latest version of Pester. See Installation and update guide.
Summary of the feature request
Hi,
we are internally using Gitlab
Describe the bug
assertThat(...).isEqualTo(..) is not working with java.sql.SQLException. The compiler says it's ambiguous.
- assertj core version: 3.22.0
- java version: 11.0.13-tem
Test case reproducing the bug
// Compilererror
assertThat(new java.sql.SQLException("test")).isEqualTo(new java.sql.SQLException("test"));
// No Compilererror (but fails)
assertTha-
Updated
Oct 29, 2019 - JavaScript
-
Updated
Mar 30, 2022 - Go
Describe the bug
pa.errors.SchemaErrors.failure_cases only returns the first 10 failure_cases
- I have checked that this issue has not already been reported.
- I have confirmed this bug exists on the latest version of pandera. 0.6.5
- (optional) I have confirmed this bug exists on the master branch of pandera.
Note: Please read [this guide](https://matthewrocklin.c
-
Updated
Jul 21, 2022 - TypeScript
As a SDET
I want a documentation or Wiki page where the expected vs actual field matching is explained
So that I can use these in my test automation to test the server response payloads and headers
e.g. id=123 , id="123", isValid=true, isValid="true" etc
AC1:
Cover the following currently supported mechanisms with examples
- $EQ
- (int)
- (float) or (decimal)
- (boolean)
-
Updated
Jun 17, 2022 - Shell
Kotlin 1.7 no longer requires a separate plugin artifact for compiling with Kotlin/Native. Remove this entire module and referencing code from the Gradle plugin.
-
Updated
Jun 20, 2022 - Lua
-
Updated
Jul 29, 2022 - Kotlin
While working on a fix for frankban/quicktest#125 it appeared that there could be an opportunity for improving the Not(Checker) error message for standard checkers, such as Equals, IsTrue etc.
Platform (all, jvm, js): all
Extension (none, kotlin 1.3): none
Code related feature
Would be nicer to have the build file in Kotlin instead of groovy
Your first contribution?
- Write a comment
I'll work on thisif you would like to take this issue over.
This way we get the chance to revise the description in case things have changed in the meantime, we might give you addi
-
Updated
Jul 10, 2022 - R
-
Updated
Jul 21, 2022 - PHP
Normally, the "to be truthy" assertion does not take any value as it simply asserts that a subject can be coerced to a boolean true (in the case of "to be falsy" it is coercion to boolean false).
It seems that early on these assertions inherited an optional form where a custom message can be supplied as their argument - this was likely inspired by earlier assertions frameworks (assert on node
-
Updated
Oct 4, 2020 - Kotlin
-
Updated
Apr 28, 2022 - JavaScript
-
Updated
Jul 21, 2022 - Go
Improve this page
Add a description, image, and links to the assertions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the assertions topic, visit your repo's landing page and select "manage topics."


Hi,
It seems like the HTTP Assert package does not allow me to specify a body to pass in a POST request for example. Looking at the
HTTPBody()function, the body argument is set tonil:req, err := http.NewRequest(method, url+"?"+values.Encode(), nil)Is this by design, or am I looking at a missing feature?
Cheers,