<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Clojure Q&amp;A - Recent questions and answers in test.check</title>
<link>https://ask.clojure.org/index.php/qa/contrib-libs/test-check</link>
<description></description>
<item>
<title>Allocation churn on generators</title>
<link>https://ask.clojure.org/index.php/14721/allocation-churn-on-generators</link>
<description>&lt;p&gt;When generating moderately large values there is some LazySeq churn that could be avoided. For example, the following snippet allocates over 15GB (measured with async-profiler):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;(core/let [g (vector (not-empty string-alphanumeric) 1000 5000)]
  (time
   (dotimes [seed 50]
     (dorun (generate g 100 seed)))))
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The pattern of generating multiple (increasingly larger) values is common with quick-check (via deftest et al).&lt;/p&gt;
&lt;p&gt;Many generators are built on top of &lt;code&gt;choose&lt;/code&gt;, and there is an opportunity to reduce churn by special casing &lt;code&gt;shrink-int&lt;/code&gt; for longs (which should be the common case compared to big ints).&lt;/p&gt;
&lt;p&gt;I have a patch that decreases total allocations of the repro above by ~15% and speed up the run time by ~25% (measured on jdk 25, with &lt;code&gt;-Xmx512m -XX:+UseSerialGC&lt;/code&gt; to decrease variance). Happy to share it.&lt;/p&gt;
</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/14721/allocation-churn-on-generators</guid>
<pubDate>Tue, 07 Oct 2025 21:16:10 +0000</pubDate>
</item>
<item>
<title>Answered: How to suppress/capture the output of defspec for use in clojure.test?</title>
<link>https://ask.clojure.org/index.php/14040/how-suppress-capture-the-output-defspec-for-use-clojure-test?show=14042#a14042</link>
<description>&lt;p&gt;OK, I found the answer.  Just add the following to the top of each unit test file:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;(alter-var-root (var tst/*report-completion*) (constantly false))&lt;/code&gt;&lt;/p&gt;
</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/14040/how-suppress-capture-the-output-defspec-for-use-clojure-test?show=14042#a14042</guid>
<pubDate>Tue, 06 Aug 2024 21:00:32 +0000</pubDate>
</item>
<item>
<title>Answered: Clarify the position of :/ as a keyword</title>
<link>https://ask.clojure.org/index.php/9427/clarify-the-position-of-as-a-keyword?show=9434#a9434</link>
<description>&lt;p&gt;It is undefined/left for future expansion.&lt;/p&gt;
&lt;p&gt;Clojurescript's reading seems weird but given that this is undefined it's hard to say it's wrong. :) &lt;/p&gt;
&lt;p&gt;Re test.check, is this an issue for you? I don't personally have any strong feelings about it but if it's making life hard for people, seems reasonable to not gen these.&lt;/p&gt;
</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/9427/clarify-the-position-of-as-a-keyword?show=9434#a9434</guid>
<pubDate>Thu, 09 Jul 2020 13:24:47 +0000</pubDate>
</item>
<item>
<title>Let RoseTree satisfy (implement) Datafiable</title>
<link>https://ask.clojure.org/index.php/9412/let-rosetree-satisfy-implement-datafiable</link>
<description>&lt;p&gt;I think for debugging it would be awesome to be able to navigate through the rose trees.&lt;/p&gt;
</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/9412/let-rosetree-satisfy-implement-datafiable</guid>
<pubDate>Thu, 02 Jul 2020 18:36:54 +0000</pubDate>
</item>
<item>
<title>Answered: New stats feature: Adds ability to assign labels to test cases to report the test case distribution when running a test</title>
<link>https://ask.clojure.org/index.php/7616/feature-ability-assign-labels-report-distribution-running?show=8439#a8439</link>
<description>&lt;p&gt;Is anything holding back this patch?&lt;/p&gt;
</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7616/feature-ability-assign-labels-report-distribution-running?show=8439#a8439</guid>
<pubDate>Thu, 22 Aug 2019 12:07:41 +0000</pubDate>
</item>
<item>
<title>Answered: Provide a mechanism for getting output from a test run after interrupting it.</title>
<link>https://ask.clojure.org/index.php/7640/provide-mechanism-getting-output-from-after-interrupting?show=7810#a7810</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-102&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-102&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7640/provide-mechanism-getting-output-from-after-interrupting?show=7810#a7810</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Add a bigint generator</title>
<link>https://ask.clojure.org/index.php/7628/add-a-bigint-generator?show=7776#a7776</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-148&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-148&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7628/add-a-bigint-generator?show=7776#a7776</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: test.check doesn't seem to have a macro for asynchronous tests</title>
<link>https://ask.clojure.org/index.php/7621/test-check-doesnt-seem-to-have-macro-for-asynchronous-tests?show=7735#a7735</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-128&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-128&lt;/a&gt; (reported by alex+import)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7621/test-check-doesnt-seem-to-have-macro-for-asynchronous-tests?show=7735#a7735</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Redesign gen/choose</title>
<link>https://ask.clojure.org/index.php/7622/redesign-gen-choose?show=7739#a7739</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-70&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-70&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7622/redesign-gen-choose?show=7739#a7739</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Create a generator that will limit the size of a generated sequence</title>
<link>https://ask.clojure.org/index.php/7623/create-generator-that-will-limit-the-size-generated-sequence?show=7742#a7742</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-99&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-99&lt;/a&gt; (reported by m0smith)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7623/create-generator-that-will-limit-the-size-generated-sequence?show=7742#a7742</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Rerunning a particular failure is difficult.</title>
<link>https://ask.clojure.org/index.php/7624/rerunning-a-particular-failure-is-difficult?show=7764#a7764</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-21&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-21&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7624/rerunning-a-particular-failure-is-difficult?show=7764#a7764</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Interactive documentation</title>
<link>https://ask.clojure.org/index.php/7625/interactive-documentation?show=7768#a7768</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-123&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-123&lt;/a&gt; (reported by viebel)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7625/interactive-documentation?show=7768#a7768</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Variant of gen/any without NaNs?</title>
<link>https://ask.clojure.org/index.php/7626/variant-of-gen-any-without-nans?show=7774#a7774</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-147&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-147&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7626/variant-of-gen-any-without-nans?show=7774#a7774</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Consider adding for-all-2 to address a couple issues</title>
<link>https://ask.clojure.org/index.php/7627/consider-adding-for-all-2-to-address-a-couple-issues?show=7775#a7775</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-146&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-146&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7627/consider-adding-for-all-2-to-address-a-couple-issues?show=7775#a7775</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: run tests in parallel on the jvm</title>
<link>https://ask.clojure.org/index.php/7631/run-tests-in-parallel-on-the-jvm?show=7780#a7780</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-115&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-115&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7631/run-tests-in-parallel-on-the-jvm?show=7780#a7780</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: re-organize README and doc/</title>
<link>https://ask.clojure.org/index.php/7629/re-organize-readme-and-doc?show=7777#a7777</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-14&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-14&lt;/a&gt; (reported by reiddraper)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7629/re-organize-readme-and-doc?show=7777#a7777</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Checking of interesting edge cases is not very creative</title>
<link>https://ask.clojure.org/index.php/7630/checking-of-interesting-edge-cases-is-not-very-creative?show=7779#a7779</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-119&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-119&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7630/checking-of-interesting-edge-cases-is-not-very-creative?show=7779#a7779</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Support Unicode chararacters for char based generators</title>
<link>https://ask.clojure.org/index.php/7619/support-unicode-chararacters-for-char-based-generators?show=7728#a7728</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-97&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-97&lt;/a&gt; (reported by m0smith)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7619/support-unicode-chararacters-for-char-based-generators?show=7728#a7728</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: size of args is conflated with depth in shrink tree</title>
<link>https://ask.clojure.org/index.php/7632/size-of-args-is-conflated-with-depth-in-shrink-tree?show=7781#a7781</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-120&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-120&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7632/size-of-args-is-conflated-with-depth-in-shrink-tree?show=7781#a7781</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Add sublist generator</title>
<link>https://ask.clojure.org/index.php/7633/add-sublist-generator?show=7782#a7782</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-48&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-48&lt;/a&gt; (reported by reiddraper)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7633/add-sublist-generator?show=7782#a7782</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: quick-check should accept an arg for maximum shrinking time</title>
<link>https://ask.clojure.org/index.php/7634/quick-check-should-accept-an-arg-for-maximum-shrinking-time?show=7784#a7784</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-96&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-96&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7634/quick-check-should-accept-an-arg-for-maximum-shrinking-time?show=7784#a7784</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: The latest recursive-gen algorithm seems to exhibit a peculiar lack of variety in depths</title>
<link>https://ask.clojure.org/index.php/7635/latest-recursive-algorithm-exhibit-peculiar-variety-depths?show=7785#a7785</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-111&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-111&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7635/latest-recursive-algorithm-exhibit-peculiar-variety-depths?show=7785#a7785</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: pos-int is confusingly named</title>
<link>https://ask.clojure.org/index.php/7636/pos-int-is-confusingly-named?show=7792#a7792</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-2&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-2&lt;/a&gt; (reported by hypirion)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7636/pos-int-is-confusingly-named?show=7792#a7792</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Metadata for tuning on generated values</title>
<link>https://ask.clojure.org/index.php/7639/metadata-for-tuning-on-generated-values?show=7798#a7798</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-153&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-153&lt;/a&gt; (reported by alex+import)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7639/metadata-for-tuning-on-generated-values?show=7798#a7798</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Add performance regression checks</title>
<link>https://ask.clojure.org/index.php/7620/add-performance-regression-checks?show=7734#a7734</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-144&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-144&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7620/add-performance-regression-checks?show=7734#a7734</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Variable-sized collection generators have exponential sizing issues when composed</title>
<link>https://ask.clojure.org/index.php/7618/variable-collection-generators-exponential-sizing-composed?show=7727#a7727</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-106&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-106&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7618/variable-collection-generators-exponential-sizing-composed?show=7727#a7727</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Refactor c.t.c/quick-check as a state machine to provide more extension points</title>
<link>https://ask.clojure.org/index.php/7637/refactor-quick-check-state-machine-provide-extension-points?show=7795#a7795</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-126&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-126&lt;/a&gt; (reported by nberger)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7637/refactor-quick-check-state-machine-provide-extension-points?show=7795#a7795</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Permit a data-structure containing generators to be used as a generator</title>
<link>https://ask.clojure.org/index.php/7607/permit-data-structure-containing-generators-used-generator?show=7677#a7677</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-19&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-19&lt;/a&gt; (reported by pangloss)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7607/permit-data-structure-containing-generators-used-generator?show=7677#a7677</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Exponential generator</title>
<link>https://ask.clojure.org/index.php/7599/exponential-generator?show=7641#a7641</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-71&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-71&lt;/a&gt; (reported by eraserhd)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7599/exponential-generator?show=7641#a7641</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: bind doesn't shrink very well</title>
<link>https://ask.clojure.org/index.php/7600/bind-doesnt-shrink-very-well?show=7644#a7644</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-112&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-112&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7600/bind-doesnt-shrink-very-well?show=7644#a7644</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: gen/for macro for alternate combinator syntax</title>
<link>https://ask.clojure.org/index.php/7601/gen-for-macro-for-alternate-combinator-syntax?show=7645#a7645</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-15&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-15&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7601/gen-for-macro-for-alternate-combinator-syntax?show=7645#a7645</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Add gen/uniform-double</title>
<link>https://ask.clojure.org/index.php/7602/add-gen-uniform-double?show=7655#a7655</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-84&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-84&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7602/add-gen-uniform-double?show=7655#a7655</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Generators for functions?</title>
<link>https://ask.clojure.org/index.php/7603/generators-for-functions?show=7656#a7656</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-38&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-38&lt;/a&gt; (reported by alex+import)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7603/generators-for-functions?show=7656#a7656</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Add helpers for deprecating generators</title>
<link>https://ask.clojure.org/index.php/7604/add-helpers-for-deprecating-generators?show=7661#a7661</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-41&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-41&lt;/a&gt; (reported by johnwalker)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7604/add-helpers-for-deprecating-generators?show=7661#a7661</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: prop/for-all should let later bindings refer to earlier bindings</title>
<link>https://ask.clojure.org/index.php/7605/prop-for-all-should-let-later-bindings-refer-earlier-bindings?show=7662#a7662</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-85&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-85&lt;/a&gt; (reported by alex+import)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7605/prop-for-all-should-let-later-bindings-refer-earlier-bindings?show=7662#a7662</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Enable shrinking on recursive generators</title>
<link>https://ask.clojure.org/index.php/7617/enable-shrinking-on-recursive-generators?show=7720#a7720</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-110&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-110&lt;/a&gt; (reported by halgari)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7617/enable-shrinking-on-recursive-generators?show=7720#a7720</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Add nested property support</title>
<link>https://ask.clojure.org/index.php/7606/add-nested-property-support?show=7665#a7665</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-7&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-7&lt;/a&gt; (reported by hypirion)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7606/add-nested-property-support?show=7665#a7665</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: string from regular expression generator</title>
<link>https://ask.clojure.org/index.php/7608/string-from-regular-expression-generator?show=7686#a7686</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-60&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-60&lt;/a&gt; (reported by steveminer@gmail.com)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7608/string-from-regular-expression-generator?show=7686#a7686</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Performance regression in map generator between 0.5.8 and 0.5.9</title>
<link>https://ask.clojure.org/index.php/7609/performance-regression-in-map-generator-between-0-5-8-and-0-5?show=7689#a7689</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-57&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-57&lt;/a&gt; (reported by brainkim)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7609/performance-regression-in-map-generator-between-0-5-8-and-0-5?show=7689#a7689</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Bound tests and shrinks in time</title>
<link>https://ask.clojure.org/index.php/7610/bound-tests-and-shrinks-in-time?show=7691#a7691</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-8&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-8&lt;/a&gt; (reported by hypirion)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7610/bound-tests-and-shrinks-in-time?show=7691#a7691</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Handle sigint</title>
<link>https://ask.clojure.org/index.php/7611/handle-sigint?show=7693#a7693</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-4&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-4&lt;/a&gt; (reported by hypirion)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7611/handle-sigint?show=7693#a7693</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Poisson generator</title>
<link>https://ask.clojure.org/index.php/7612/poisson-generator?show=7694#a7694</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-72&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-72&lt;/a&gt; (reported by eraserhd)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7612/poisson-generator?show=7694#a7694</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: for-all should support nesting</title>
<link>https://ask.clojure.org/index.php/7613/for-all-should-support-nesting?show=7696#a7696</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-44&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-44&lt;/a&gt; (reported by alex+import)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7613/for-all-should-support-nesting?show=7696#a7696</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Alternate clojure.test integration</title>
<link>https://ask.clojure.org/index.php/7614/alternate-clojure-test-integration?show=7705#a7705</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-58&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-58&lt;/a&gt; (reported by alex+import)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7614/alternate-clojure-test-integration?show=7705#a7705</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Add a prop/for-all alternative to c.t.c.clojure-test that uses clojure.test/is &amp;c</title>
<link>https://ask.clojure.org/index.php/7615/add-prop-for-alternative-clojure-test-that-uses-clojure-test?show=7707#a7707</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-101&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-101&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7615/add-prop-for-alternative-clojure-test-that-uses-clojure-test?show=7707#a7707</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
<item>
<title>Answered: Better distribution for the ratio generator</title>
<link>https://ask.clojure.org/index.php/7638/better-distribution-for-the-ratio-generator?show=7797#a7797</link>
<description>Reference: &lt;a href=&quot;https://clojure.atlassian.net/browse/TCHECK-149&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://clojure.atlassian.net/browse/TCHECK-149&lt;/a&gt; (reported by gfredericks)</description>
<category>test.check</category>
<guid isPermaLink="true">https://ask.clojure.org/index.php/7638/better-distribution-for-the-ratio-generator?show=7797#a7797</guid>
<pubDate>Wed, 26 Jun 2019 12:00:00 +0000</pubDate>
</item>
</channel>
</rss>