about summary refs log tree commit diff
path: root/convert_test.go
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-08-19 14:52:06 +0200
committerEmile <hanemile@protonmail.com>2019-08-19 14:52:06 +0200
commita4770f7cbe18db9a297147057dac54aa2b349cf0 (patch)
tree3887b11cc7b4678d840cda758e3baf25e9c5dcf3 /convert_test.go
parent86ad39d115f35a8cd513bbdd104a737b8e0095df (diff)
removed the convert files, rewriting
Diffstat (limited to 'convert_test.go')
-rw-r--r--convert_test.go40
1 files changed, 0 insertions, 40 deletions
diff --git a/convert_test.go b/convert_test.go
deleted file mode 100644
index f827319..0000000
--- a/convert_test.go
+++ /dev/null
@@ -1,40 +0,0 @@
-package TLE
-
-import (
-	"reflect"
-	"testing"
-)
-
-func TestStringToTLE(t *testing.T) {
-	type args struct {
-		inputTLE string
-	}
-	tests := []struct {
-		name  string
-		args  args
-		want  TLE
-		want1 error
-	}{
-		{
-			name:  "Simple ISS test",
-			args:  args{
-				inputTLE: `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`,
-			},
-			want:  TLE{},
-			want1: nil,
-		},
-	}
-	for _, tt := range tests {
-		t.Run(tt.name, func(t *testing.T) {
-			got, got1 := StringToTLE(tt.args.inputTLE)
-			if !reflect.DeepEqual(got, tt.want) {
-				t.Errorf("StringToTLE() got = %v, want %v", got, tt.want)
-			}
-			if !reflect.DeepEqual(got1, tt.want1) {
-				t.Errorf("StringToTLE() got1 = %v, want %v", got1, tt.want1)
-			}
-		})
-	}
-}
\ No newline at end of file