We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f91ae3 commit 5fa9f64Copy full SHA for 5fa9f64
.gitignore
@@ -15,3 +15,6 @@
15
# vendor/
16
17
*.txt
18
+
19
+*.html
20
+.vscode
README.md
@@ -13,4 +13,4 @@ We have also done some basic benchmarking with some of the most commonly used pa
13
14
- [Stack (using linked list)](stack/README.md)
- [Queue (using linked list)](queue/README.md)
-- [Single linked list](list/singleLinkedList_README)
+- [Single linked list](list/singleLinkedList_README.md)
makefile
@@ -1,4 +1,8 @@
1
-.PHONY: test
+.PHONY: test test-coverage
2
3
test:
4
go test ./...
5
6
+test-coverage:
7
+ go test ./... -coverprofile coverage.txt -covermode=atomic
8
+ go tool cover -html=coverage.txt -o coverage.html
0 commit comments