@@ -10,6 +10,8 @@ import (
1010)
1111
1212func TestCompare (t * testing.T ) {
13+ t .Parallel ()
14+
1315 type customString string
1416 type customInt int
1517 type customInt8 int8
@@ -127,6 +129,8 @@ func callerName(skip int) string {
127129}
128130
129131func TestGreater (t * testing.T ) {
132+ t .Parallel ()
133+
130134 mockT := new (testing.T )
131135
132136 if ! Greater (mockT , 2 , 1 ) {
@@ -171,6 +175,8 @@ func TestGreater(t *testing.T) {
171175}
172176
173177func TestGreaterOrEqual (t * testing.T ) {
178+ t .Parallel ()
179+
174180 mockT := new (testing.T )
175181
176182 if ! GreaterOrEqual (mockT , 2 , 1 ) {
@@ -215,6 +221,8 @@ func TestGreaterOrEqual(t *testing.T) {
215221}
216222
217223func TestLess (t * testing.T ) {
224+ t .Parallel ()
225+
218226 mockT := new (testing.T )
219227
220228 if ! Less (mockT , 1 , 2 ) {
@@ -259,6 +267,8 @@ func TestLess(t *testing.T) {
259267}
260268
261269func TestLessOrEqual (t * testing.T ) {
270+ t .Parallel ()
271+
262272 mockT := new (testing.T )
263273
264274 if ! LessOrEqual (mockT , 1 , 2 ) {
@@ -303,6 +313,8 @@ func TestLessOrEqual(t *testing.T) {
303313}
304314
305315func TestPositive (t * testing.T ) {
316+ t .Parallel ()
317+
306318 mockT := new (testing.T )
307319
308320 if ! Positive (mockT , 1 ) {
@@ -342,6 +354,8 @@ func TestPositive(t *testing.T) {
342354}
343355
344356func TestNegative (t * testing.T ) {
357+ t .Parallel ()
358+
345359 mockT := new (testing.T )
346360
347361 if ! Negative (mockT , - 1 ) {
@@ -381,6 +395,8 @@ func TestNegative(t *testing.T) {
381395}
382396
383397func Test_compareTwoValuesDifferentValuesTypes (t * testing.T ) {
398+ t .Parallel ()
399+
384400 mockT := new (testing.T )
385401
386402 for _ , currCase := range []struct {
@@ -399,6 +415,8 @@ func Test_compareTwoValuesDifferentValuesTypes(t *testing.T) {
399415}
400416
401417func Test_compareTwoValuesNotComparableValues (t * testing.T ) {
418+ t .Parallel ()
419+
402420 mockT := new (testing.T )
403421
404422 type CompareStruct struct {
@@ -418,6 +436,8 @@ func Test_compareTwoValuesNotComparableValues(t *testing.T) {
418436}
419437
420438func Test_compareTwoValuesCorrectCompareResult (t * testing.T ) {
439+ t .Parallel ()
440+
421441 mockT := new (testing.T )
422442
423443 for _ , currCase := range []struct {
@@ -438,6 +458,8 @@ func Test_compareTwoValuesCorrectCompareResult(t *testing.T) {
438458}
439459
440460func Test_containsValue (t * testing.T ) {
461+ t .Parallel ()
462+
441463 for _ , currCase := range []struct {
442464 values []compareResult
443465 value compareResult
0 commit comments