-
Updated
Jan 8, 2022 - JavaScript
unit-testing
Here are 4,019 public repositories matching this topic...
-
Updated
Oct 11, 2021 - JavaScript
Is your feature request related to a problem? Please describe.
If you want to use sinon with mocha, you shouldn't forget to restore the sinon sandbox after each test. This is documented here in general setup.
Since version 7.2, mocha supports root hooks. It is a way to export mocha root hooks (beforeEach, afterEach etc) fr
-
Updated
Jan 13, 2022 - Python
-
Updated
Jan 8, 2022 - CMake
-
Updated
Jan 11, 2022 - Go
-
Updated
Jan 11, 2022 - Python
-
Updated
Jan 11, 2022 - PHP
-
Updated
Jan 12, 2022 - JavaScript
-
Updated
Jan 13, 2022 - C++
Currently when calling the MSBuild alias with an MSBuildSettings, we need to set the target using the WithTarget extension method.
MSBuild("./my-app.sln", new MSBuildSettings
{
Configuration = "Release",
ToolVersion = MSBuildToolVersion.VS2019,
}.WithTarget("Build")); // <<<###
It would be nice if we could use a property, with a string, which would make it more na
Currently, when comparing strings, options like ignoreLineEndingDifferences and ignoreWhiteSpaceDifferences require there be at least one instance of the various characters
// Succeeds
Assert.Equal(" ", " ", ignoreWhiteSpaceDifferences: true);
// Fails
Assert.Equal(" ", String.Empty, ignoreWhiteSpaceDifferences: true);... I'm looking for a way to compare two s
-
Updated
Oct 27, 2018 - Go
-
Updated
Dec 19, 2021 - JavaScript
-
Updated
Jan 13, 2022 - TypeScript
-
Updated
Jan 13, 2022 - JavaScript
Description
When trying to assert that an interface type has internal access, the following assertion message is thrown:
Expected expression to be Internal, but it is InvalidForCSharp.
Complete minimal example reproducing the issue
Assuming the following definition exists in the scope of the test:
internal interface ITest {}The following demonstrate
-
Updated
Jan 14, 2022 - Java
-
Updated
Jan 4, 2022 - Go
-
Updated
Dec 20, 2021 - Scala
-
Updated
Aug 9, 2021 - C#
-
Updated
Oct 5, 2021 - JavaScript
-
Updated
Jan 13, 2022 - TypeScript
-
Updated
Nov 17, 2021
-
Updated
Jun 11, 2021 - Swift
Rubberduck version information
The info below can be copy-paste-completed from the first lines of Rubberduck's log or the About box:
Rubberduck version [Version 2.5.2.6030
OS: Microsoft Windows NT 10.0.22000.0, x64
Host Product: Microsoft Office x64
Host Version: 16.0.14701.20226
Host Executable: WINWORD.EXE
Description
Language inspection for assignment of LCase suggests usi
If you want to contribute android projects to awesome-android-kotlin-apps, Pull Requests are welcomed!
If you are a beginner looking for your first contribution to Open Source, I will help you with Pull Request and contributing guide.
Feel free to send Pull Requests, fix typos, grammatical mistakes ...
Take this class, for example:
`
import Foundation
// some comment has import SOMEBADTHING
public protocol TestProtocol: AnyObject {
func doSomething() -> Void
}
`
The generated mock ends up having:
... import SOMEBADTHING ...
Looks like it is looking for "{import .*}" in source files and just adding that verbatim to the output file, causing compile issues.
Improve this page
Add a description, image, and links to the unit-testing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the unit-testing topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
Doc string states:
Date().weekday -> 5 // fifth day in the current week.
Guess what, 5 is not friday. It's thursday. It makes some sense after i dug deeper, but as a programmer, i assumed monday could be 0 or 1, therefore thursday should be 3 or 4. Monday is 2! Because sunday is 1!
**Describe the solution you'd li