-
Updated
Oct 27, 2018 - Go
#
unit-test
Here are 903 public repositories matching this topic...
A Golang tool that does static analysis, unit testing, code review and generate code quality report.
golang
unit-testing
test
linter
static-analysis
reporter
codereview
golang-tools
examination
unit-test
staticcheck
quality-report
-
Updated
Nov 17, 2021
Angular build facade extensions (Jest and custom webpack configuration)
builder
angular
build
webpack
customization
jest
custom
dev-server
webpack-dev-server
angular-cli
ivy
extend
unit-test
builders
customized-builds
jest-test
angular10
angular11
angular12
angular13
-
Updated
Jan 26, 2022 - TypeScript
Godot Unit Test. Unit testing tool for Godot Game Engine.
-
Updated
Jan 21, 2022 - GDScript
The successor to nose, based on unittest2
python
testing
library
python-library
python3
unittest
testing-tools
python-3
python-2
python2
nose
unittesting
unit-test
testing-framework
nosetest
nosetests
testing-library
testing-tool
nose2
-
Updated
Jan 4, 2022 - Python
Android开发中必要的一环---单元测试(Unit Test)
android
kotlin
mvp
kotlin-android
mockito
junit
assertj
robolectric
rxjava2
okhttp3
mockwebserver
unit-test
powermock
reftrofit
restmock
-
Updated
Oct 15, 2021 - Java
-
Updated
Dec 29, 2021 - C
Testing tools and utilities for Apple's Combine framework.
swift
ios
apple
reactive
tvos
test
reactive-streams
reactive-programming
xctest
combine
unit-test
swiftui
combine-framework
-
Updated
Dec 7, 2021 - Swift
nodejs
javascript
npm
typescript
jasmine
webpack
es6
es2015
karma
npm-package
starter
webpack-server
karma-jasmine
unit-test
-
Updated
Jan 22, 2022 - JavaScript
Incremental scan,integrate Lint、KtLint、UnitTest、Checkstyle、Findbugs、Pmd, powerful and easy to use
-
Updated
Sep 27, 2021 - Groovy
android
java
circleci
architecture
mvp
android-development
android-application
clean-architecture
mockito
android-architecture
mvp-architecture
repository-pattern
model-view-presenter
presenter
mvp-pattern
android-applications
mvp-android
mvp-library
android-mvp-architecture
unit-test
-
Updated
Jan 21, 2022 - Java
Visualize unit test code coverage easily for free in Visual Studio Community Edition (and other editions too)
visualization
visual-studio
csharp
dotnet
dotnetcore
vsix
visualisation
dot-net
unittest
free
vb
dot-net-core
code-coverage
unit-test
opencover
community-edition
report-generator
coverlet
fine-code-coverage
finecodecoverage
-
Updated
Nov 18, 2021 - C#
A unit testing framework for Shell scripts - namely Bash.
-
Updated
Jun 21, 2019 - Shell
Рекомендации по написанию PHP кода
-
Updated
Jul 25, 2020
Component based Angular(1.x) web development with Webpack and ES6.
-
Updated
Jun 10, 2018 - JavaScript
Clean MVP Architecture with Dagger2 + Retrofit2 + Mockito + Fresco + EasiestGenericRecyclerAdapter using Kotlin. Added Unit Tests(Kotlin Tests)!
kotlin
unit-testing
mvp
retrofit
kotlin-android
clean-architecture
unittest
dagger2
mvp-architecture
retrofit2
mvp-clean
mvp-pattern
android-tests
leakcanary
mvp-android
unittesting
dagger2-mvp
unit-test
android-testing
kotlintest
-
Updated
Nov 28, 2017 - Kotlin
A Godot Unit Test Framework
-
Updated
Jan 26, 2022 - GDScript
This is an example of doing a Modern C++ project with CI
windows
macos
linux
unit-testing
visual-studio
cmake
xcode
cpp
continuous-integration
ci
gcc
modern-cpp
cpp14
clang
cpp17
unit-test
ctest
-
Updated
Jul 2, 2017 - C++
Roald87
commented
Apr 30, 2021
After upgrading from v1.0 to v1.2 I saw that a test suite which ran without issues before, now had a lot of cycle overruns. After some investigation I noticed that there is a parameter to set the maximum number of assertions. For v1.0 this was at 500 and for v1.2 it is at 1000. Even when I set the parameter the same for both versions, v1.0 had no issue with cycle overruns, but v1.2 did. Are assert
11
Kotlin Unit Testing Examples
kotlin
mockito
spek
junit4
junit5
kotlin-testing
unit-test
kotlintest
data-driven-tests
parameterised-tests
mockk
kotlin-test
kotlin-mockito
-
Updated
Oct 26, 2019 - Kotlin
Improve this page
Add a description, image, and links to the unit-test topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the unit-test topic, visit your repo's landing page and select "manage topics."
We need a page in the docs that tell users that to mock they should use
from unittest import mock
.We should note that the
mock.patch
decorators don't currently work, and that we need to use the context managers instead.