This commit is contained in:
Reese Norris
2025-05-23 13:01:52 -07:00
parent 1e4967c52a
commit 556cd26227
3 changed files with 20 additions and 22 deletions

View File

@@ -1,6 +1,7 @@
package fsd
import (
"fmt"
"testing"
)
@@ -52,3 +53,10 @@ func TestGetField(t *testing.T) {
}
}
}
func TestPitchBankHeading(t *testing.T) {
pitch, bank, heading := pitchBankHeading(4261294148)
fmt.Println(pitch)
fmt.Println(bank)
fmt.Println(heading)
}