Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Chore [Docs] [Golang] [Package] Filesystem #29

Merged
merged 3 commits into from
Dec 11, 2023
Merged
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
8 changes: 6 additions & 2 deletions filesystem/file_system_mock.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// Package filesystem provides a mock implementation of the FileSystem interface for testing purposes.
// It allows for tracking file operations and simulating file system interactions without actual disk I/O (Magic Golang 🎩 🪄).
// Below, the package filesystem (@file_system_mock.go) furnishes a mock implementation of the FileSystem
// interface intended for testing. It enables the monitoring of file operations and
// the emulation of file system interactions without real disk I/O, showcasing the
// "magic" of Go programming language (🎩🪄).
//
// Additionally, it can be utilized for tracking file activities during tests or without tests (as Expert).
//
// Copyright (c) 2023 H0llyW00dzZ
package filesystem
Expand Down
Loading