-
Updated
Apr 20, 2022 - Python
property-based-testing
Here are 255 public repositories matching this topic...
-
Updated
Apr 18, 2022 - TypeScript
-
Updated
Mar 7, 2022 - Java
-
Updated
Apr 11, 2022 - Java
-
Updated
Jan 31, 2022 - Elixir
Right now we just use the standard C random library, but really it'd be nice if the brute force fuzzer could do consistent tests across platforms, for various purposes. We probably need our own PRNG, something like:
https://www-cs-faculty.stanford.edu/~knuth/news02.html#rng
or
https://github.com/cmcqueen/simplerandom
I'm not sure what's best. We'd like decentish quality, maybe, and d
-
Updated
Mar 23, 2022 - Elixir
-
Updated
Apr 13, 2022 - Haskell
-
Updated
Mar 21, 2022 - F#
-
Updated
Oct 13, 2020 - Java
-
Updated
Mar 14, 2022 - Java
-
Updated
Apr 18, 2022 - Rust
-
Updated
Apr 20, 2022 - Python
-
Updated
Feb 5, 2022 - Elixir
-
Updated
Apr 10, 2022 - Elixir
-
Updated
Apr 7, 2022 - Go
-
Updated
Apr 18, 2022 - Scala
-
Updated
Apr 20, 2022 - OCaml
-
Updated
Jan 26, 2021 - Ruby
In tutorial we have sample for genarator of IpAddress
open System.Net
let ipAddressGen : Gen<IPAddress> = gen {
let! addr = Range.constantBounded () |> Gen.byte |> Gen.array (Range.singleton 4)
return System.Net.IPAddress addr
}
Anybody could check my translation to csharp? It is'nt idiomatic csharp IMHO
var byteRange = Range.ConstantBoundedByte()
-
Updated
May 11, 2021 - Haskell
Set Value lazily
Set lazy value which is different when call set
and call sample
New operation would determines value when call sample
As is
// given
ArbitraryBuilder<String> variable = fixture.giveMeBuilder(String.class);
ArbitraryBuilder<String> builder = fixture.giveMeBuilder(String.class)
.set("$", variable.sample());
variable.set("test");
// when
String actual = builder.sampl
-
Updated
Apr 5, 2022 - Scala
-
Updated
Dec 31, 2021 - TypeScript
Every project with aspirations to greatness needs a logo, and hypothesis-jsonschema
is no exception. Are you the generous designer who can help?
- Hypothesmith is, as the name suggests, built on Hypothesis. You may therefore want to draw on that project's logo and brand, though it's not required.
- The other major inspirati
-
Updated
Oct 30, 2021 - Haskell
Improve this page
Add a description, image, and links to the property-based-testing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the property-based-testing topic, visit your repo's landing page and select "manage topics."
This might be helpful - too many redirects may be considered an error. E.g. the API schema might need to provide endpoints that won't involve any redirection at all, for example, if the app redirects "/api/users" to "/api/users/", then the schema should have endpoints with trailing slashes to avoid these redirects for clients at all.
Implementation notes
models.Case.call
signatu