Skip to content

docs: add glossary terms #575

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions versioned_docs/version-3.0.0/concepts/general-glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,20 @@ the same result.
Deduplication is a data compression technique wherein redundant copies of the same data are identified and eliminated.
This process involves hash functions or similarity analysis to compare data chunks, enabling the storage system to store
only one instance of each unique data segment, thereby optimizing storage efficiency and reducing redundancy.


### Assertion
A statement that tests whether a specific condition holds true in your test code.


### Integration Test
A test that validates interactions between different parts of the system working together.


### Mock
A type of stub equipped with built-in assertions to verify interactions during tests.


### Stub
A placeholder or minimal implementation used in testing to simulate real components.