The Wayback Machine - https://web.archive.org/web/20201130124206/https://github.com/topics/test-framework
Skip to content
#

test-framework

Here are 548 public repositories matching this topic...

horenmar
horenmar commented Nov 25, 2020

They should take single matcher during construction, and their match method should take a generic range, using the new generic matcher support.

Expected usage:

REQUIRE_THAT(get_keys(), AllMatch(KeyPattern({1, 2, 3})));
REQUIRE_THAT(get_numbers(), NoneMatch(IsOdd{}));
REQUIRE_THAT(get_strings(), AnyMatch(Contains("webscale") && !Contains("MongoDB")));

the matching semantics

Augure34
Augure34 commented Oct 3, 2019

When running build.ps1 -t Test, the following output describes the failing tests:

  1. Failed : NUnit.Framework.Api.FrameworkControllerTests.ExploreTestsAction_FileNotFound_ReturnsNonRunnableSuite
    Expected: String containing "The system cannot find the file specified."
    But was: "Le fichier sp├®cifi├® est introuvable. (Exception from HRESULT: 0x80070002)"
    at NUnit.Framework.Api.Framew
ravi-mijar-au
ravi-mijar-au commented Aug 30, 2020

In a pact-node consumer test, I have -

describe('edit a policy', () => {
    const REQUEST_BODY = {
      name: 'account-holder',
      version: '2020-07-10T01:22:09.488Z',
    };
    const RESPONSE_BODY = {
      name: Matchers.like('account-holder'),
      version: Matchers.ISO8601_DATETIME_WITH_MILLIS_FORMAT,
      additionalAttributes: Matchers.like({}),
    };
    beforeEach(
bethesque
bethesque commented Jun 26, 2020

As part of the process of making the Pact docs more user friendly, we'd like to start writing feature documentation once, and providing code examples for each of the languages, rather than everyone having to write the same docs over and over again in each language.

The documentation for the consumer version selectors can be our first opportunity to give this approach a try. I have written the beh

tomato42
tomato42 commented Oct 26, 2020

Feature request

Is your feature request related to a problem? Please describe

The analysis.py script provides just one confidence interval: 95%. While that is related to the 2-sigma interval of normal distribution, so in theory allows for easy estimation of bigger confidence intervals (like 3, 4, 5-sigma), it assumes a normal distribution, which the differences don't follow, and may be

Improve this page

Add a description, image, and links to the test-framework topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the test-framework topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.