Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
metachris committed Jun 2, 2024
1 parent 9223b41 commit 144aded
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/adrs/202405-bidcollect.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Run:
go run . service bidcollect --out csv --data-api --ultrasound-stream
```

Example output: https://gist.github.com/metachris/061c0443afb8b8d07eed477a848fa395

### Done

- Ultrasound bid stream
Expand Down
13 changes: 13 additions & 0 deletions services/bidcollect/types_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package bidcollect

import (
"testing"

"github.com/stretchr/testify/require"
)

func TestSourceTypes(t *testing.T) {
require.Equal(t, 0, CollectGetHeader)
require.Equal(t, 1, CollectDataAPI)
require.Equal(t, 2, CollectUltrasoundStream)
}

0 comments on commit 144aded

Please sign in to comment.