-
Updated
Aug 25, 2020 - JavaScript
tdd
Here are 3,496 public repositories matching this topic...
-
Updated
Aug 25, 2020 - JavaScript
Describe the bug
When TEMPLATE_LIST_TEST_CASE and TEMPLATE_LIST_TEST_CASE_METHOD were added, the corresponding versions with the CATCH_ prefix were missed.
Expected behavior
CATCH_TEMPLATE_LIST_TEST_CASE and CATCH_TEMPLATE_LIST_TEST_CASE_METHOD should be available.
Additional context
The commit that added TEMPLATE_LIST_TEST_CASE and `TEMPLATE_LIST_TEST_CASE_MET
@benoittgt very kindly submitted a PR to fix some spacing issues in the markdown using gofmtmd.
It should be possible to automate this as part of the build script
-
Updated
Aug 17, 2020 - JavaScript
Is your feature request related to a problem? Please describe.
Reading through what a fake can and can not do is not clear from the documentation.
Describe the solution you'd like
Exact methods that are available to a Fake need to be documented.
First of all thank you for Sinon, I believe the library is powerful and has helped me write a lot of tests. What I'm requesting here is
-
Updated
Jul 17, 2020 - JavaScript
-
Updated
Jun 26, 2020 - C#
-
Updated
Aug 24, 2020 - Go
-
Updated
Aug 10, 2020 - C++
Code lens in vscode cannot run tests when TestCases are provided because we are using the opening brace position as the line filter, but test cases will move it further down, not matching the filter. To avoid difficult parsing let's change that to using $MyInvocation.ScriptLineNumber instead of $ScriptBlock.StartPosition.StartLine, which will give us the position of the It (and other) co
Let's add MinVer and on successful builds generate a release.
The postgres_session resource needs to allow the user to pass a port for the target db as we do for host and db_name etc
When running build.ps1 -t Test, the following output describes the failing tests:
- 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
-
Updated
Aug 24, 2020 - C#
-
Updated
Oct 29, 2019 - JavaScript
-
Updated
Nov 25, 2019 - Python
-
Updated
Jun 1, 2020 - Python
Neovim terminal mode
Hi,
When I run my tests using the neovim strategy, it opens a new terminal but auto focus on the buffer. Then I have to press <C-o> to not close the buffer and go back to my split pane.
Is there a way to have it open but not switch my focus to the newly opened pane automatically?
-
Updated
Jan 9, 2020 - Java
-
Updated
Aug 10, 2020 - Python
TypeScript 3.7 · TypeScript https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#assertion-functions
In fast-check fc.pre can be used to stop the execution of a property if some preconditions are not validated.
// v is number | null
fc.pre(v !== null)
// while v cannot be null there, TypeScript stills consider that it can beAs adding thi
kotlin linting
Hi, when implementing http4k/http4k#435 I noticed the codebase does not have a linter set up - e.g. some files end with new lines and some don't.
I am not sure whether this is desired, I would be happy to participate if wanted.
Date API Proposal
Feature Request
Description:
API for Date matchers. Some matchers are inspired by Jasmine Matchers.
Possible solution:
Jasmine-like matchers:
expect(date).toBeDate(); // Matcher added
expect(date).toBeValidDate(); // Matcher added
expect(date).toBeAfter(otherDate); // Matcher added
expect(date).toBeBefore(otherDa-
Updated
Aug 19, 2020 - PHP
-
Updated
Jul 23, 2020
-
Updated
Feb 19, 2020
Improve this page
Add a description, image, and links to the tdd topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tdd topic, visit your repo's landing page and select "manage topics."
The following spec fails with a timeout but should fail with a message that explains that a promise was expected to be resolved:
Most of the async matchers have this problem, with the notable exception of
toBePending.