From 23022d5cc19584e282e2b751d1e57bfea384f97f Mon Sep 17 00:00:00 2001 From: andronache Date: Fri, 6 Nov 2020 12:05:19 +0200 Subject: [PATCH] Added tests for coverage in utils package --- utils/concureqs_test.go | 39 -------------------------------------- utils/pathitemlist_test.go | 1 + 2 files changed, 1 insertion(+), 39 deletions(-) delete mode 100644 utils/concureqs_test.go diff --git a/utils/concureqs_test.go b/utils/concureqs_test.go deleted file mode 100644 index 0e43379a2..000000000 --- a/utils/concureqs_test.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Real-time Online/Offline Charging System (OerS) for Telecom & ISP environments -Copyright (C) ITsysCOM GmbH - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see -*/ - -package utils - -import ( - "reflect" - "testing" -) - -func TestConcureqsNewConReqs(t *testing.T) { - expected := &ConcReqs{strategy: "test", aReqs: make(chan struct{}, 1)} - received := NewConReqs(1, "test") - if reflect.DeepEqual(expected, received) { - t.Errorf("Expecting: %+v, received: %+v", expected, received) - } -} - -func TestConcureqsIsLimited(t *testing.T) { - received := NewConReqs(1, "test").IsLimited() - if received != true { - t.Errorf("Expecting: true, received: %+v", received) - } -} diff --git a/utils/pathitemlist_test.go b/utils/pathitemlist_test.go index 460e0da85..1c60146bc 100644 --- a/utils/pathitemlist_test.go +++ b/utils/pathitemlist_test.go @@ -67,4 +67,5 @@ func TestPathItemListNext(t *testing.T) { fmt.Println(list.Back().Prev().Value.String()) } + */