Skip to content

Commit b32f29b

Browse files
committedJun 3, 2019
add few coverage fr future
1 parent eb563ed commit b32f29b

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed
 

‎concurrency/barrier/barrier.go

-7
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,3 @@ func makeRequest(out chan<- Response, url string) {
6767
res.Resp = string(byt)
6868
out <- res
6969
}
70-
71-
func main() {
72-
barrier(
73-
"http://httpbin.org/headers",
74-
"http://httpbin.org/user-agent",
75-
)
76-
}

‎concurrency/barrier/barrier_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package main
2+
3+
import "testing"
4+
5+
func TestDidAllUrlsDidLoaded(t *testing.T) {
6+
barrier(
7+
"http://httpbin.org/headers",
8+
"http://httpbin.org/user-agent",
9+
)
10+
}

0 commit comments

Comments
 (0)
Please sign in to comment.