From aa9b9473ae804f41f39d530a9112a0947950bea9 Mon Sep 17 00:00:00 2001 From: Emile Date: Sun, 18 Aug 2019 21:00:01 +0200 Subject: removed the tests --- TLE_test.go | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 TLE_test.go diff --git a/TLE_test.go b/TLE_test.go deleted file mode 100644 index f5db76f..0000000 --- a/TLE_test.go +++ /dev/null @@ -1,35 +0,0 @@ -package TLE - -import ( - "reflect" - "testing" -) - -func TestTLEfromString(t *testing.T) { - type args struct { - TLE string - } - tests := []struct { - name string - args args - want tlebytes - }{ - { - name: "start", - args: args{ - TLE: `ISS (ZARYA) - 1 25544U 98067A 19229.39083552 .00000228 00000-0 11917-4 0 9993 - 2 25544 51.6447 57.6210 0007373 294.0868 138.8050 15.50381554184754 - A`, - }, - want: tlebytes{}, - }, - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - if got := TLEfromString(tt.args.TLE); !reflect.DeepEqual(got, tt.want) { - t.Errorf("TLEfromString() = %v, want %v", got, tt.want) - } - }) - } -} \ No newline at end of file -- cgit 1.4.1