12 lines
137 B
Go
12 lines
137 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestParse(t *testing.T) {
|
|
f := FlowCalculation()
|
|
fmt.Println(f.Parse(13030000000))
|
|
}
|