Difference between revisions of "Unit testing"
Jump to navigation
Jump to search
m (Add links to Android Google site with FFF based testing answers) |
m (Add links to articles on fake functions versus mock functions) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 9: | Line 9: | ||
* https://jonjagger.blogspot.com/2017/03/the-hidden-life-of-trees.html | * https://jonjagger.blogspot.com/2017/03/the-hidden-life-of-trees.html | ||
| − | Android Google | + | == Android Google Documentation == |
* https://android.googlesource.com/platform/external/fff#how-do-i-reuse-a-fake-across-multiple-test_suites | * https://android.googlesource.com/platform/external/fff#how-do-i-reuse-a-fake-across-multiple-test_suites | ||
* https://android.googlesource.com/platform/external/fff/+/cacd5f5459dba658e0c88ceff32282a0e9fab0a5/README.md#call-history | * https://android.googlesource.com/platform/external/fff/+/cacd5f5459dba658e0c88ceff32282a0e9fab0a5/README.md#call-history | ||
| + | |||
| + | == Zephyr RTOS Test Support Sources == | ||
| + | |||
| + | In Zephyr 3.7.0 LTS see `$workspace/zephyr/subsys/testsuite/include/zephyr/fff.h`. | ||
| + | |||
| + | == Fakes versus Mocks == | ||
| + | |||
| + | 1 https://stackoverflow.com/questions/346372/whats-the-difference-between-faking-mocking-and-stubbing | ||
| + | |||
| + | 2 https://blog.cleancoder.com/uncle-bob/2014/05/14/TheLittleMocker.html | ||
| + | |||
| + | 3 https://martinfowler.com/articles/mocksArentStubs.html | ||
Latest revision as of 23:30, 11 May 2026
2026-02-17 martes
Unit Testing for Software Development
From links at the end of the ACCU dot org blog post, a link to Jon Jagger blog spot:
Android Google Documentation
Zephyr RTOS Test Support Sources
In Zephyr 3.7.0 LTS see `$workspace/zephyr/subsys/testsuite/include/zephyr/fff.h`.
Fakes versus Mocks
1 https://stackoverflow.com/questions/346372/whats-the-difference-between-faking-mocking-and-stubbing
2 https://blog.cleancoder.com/uncle-bob/2014/05/14/TheLittleMocker.html