Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 976213b

Browse files
committed
Rename Comparable to Obj
1 parent 552cfb0 commit 976213b

9 files changed

+33
-32
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ The main additions are the new assertions for
7777

7878
- The `f` package is renamed to `verify`.
7979
- Rename `Obj` and `FluentObj` to `Any` and `FluentAny`.
80+
- Rename `Comparable` and `FluentComparable` to `Obj` and `FluentObj`.
8081
- Change the `Check` assertion for `any` object so that the
8182
provided function has to return `FailureMessage`
8283
instead of a `string`.

comparable.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@ package verify
22

33
import "fmt"
44

5-
// FluentComparable encapsulates assertions for comparable object.
6-
type FluentComparable[T comparable] struct {
5+
// FluentObj encapsulates assertions for comparable object.
6+
type FluentObj[T comparable] struct {
77
FluentAny[T]
88
}
99

10-
// Comparable is used for testing a comparable object.
11-
func Comparable[T comparable](got T) FluentComparable[T] {
12-
return FluentComparable[T]{FluentAny[T]{got}}
10+
// Obj is used for testing a comparable object.
11+
func Obj[T comparable](got T) FluentObj[T] {
12+
return FluentObj[T]{FluentAny[T]{got}}
1313
}
1414

1515
// Equal tests the objects using == operator.
16-
func (x FluentComparable[T]) Equal(want T) FailureMessage {
16+
func (x FluentObj[T]) Equal(want T) FailureMessage {
1717
if x.Got == want {
1818
return ""
1919
}
2020
return FailureMessage(fmt.Sprintf("the objects are not equal\ngot: %+v\nwant: %+v", x.Got, want))
2121
}
2222

2323
// NotEqual tests the objects using != operator.
24-
func (x FluentComparable[T]) NotEqual(obj T) FailureMessage {
24+
func (x FluentObj[T]) NotEqual(obj T) FailureMessage {
2525
if x.Got != obj {
2626
return ""
2727
}
2828
return "the objects are equal"
2929
}
3030

3131
// Zero tests if the object is a zero value.
32-
func (x FluentComparable[T]) Zero() FailureMessage {
32+
func (x FluentObj[T]) Zero() FailureMessage {
3333
var want T
3434
if want == x.Got {
3535
return ""
@@ -38,7 +38,7 @@ func (x FluentComparable[T]) Zero() FailureMessage {
3838
}
3939

4040
// NonZero tests if the object is a non-zero value.
41-
func (x FluentComparable[T]) NonZero() FailureMessage {
41+
func (x FluentObj[T]) NonZero() FailureMessage {
4242
var want T
4343
if want != x.Got {
4444
return ""

comparable_test.go

+14-14
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/fluentassert/verify"
77
)
88

9-
func TestComparable(t *testing.T) {
9+
func TestObj(t *testing.T) {
1010
type A struct {
1111
Str string
1212
Bool bool
@@ -16,18 +16,18 @@ func TestComparable(t *testing.T) {
1616
t.Run("Passed", func(t *testing.T) {
1717
want := A{Str: "string", Bool: true}
1818
got := A{Str: "string", Bool: true}
19-
msg := verify.Comparable(got).Equal(want)
19+
msg := verify.Obj(got).Equal(want)
2020
assertPassed(t, msg)
2121
})
2222
t.Run("Failed", func(t *testing.T) {
2323
want := A{Str: "string", Bool: true}
2424
got := A{Str: "wrong", Bool: true}
25-
msg := verify.Comparable(got).Equal(want)
25+
msg := verify.Obj(got).Equal(want)
2626
assertFailed(t, msg, "the objects are not equal")
2727
})
2828
t.Run("nil", func(t *testing.T) {
2929
var got *A
30-
msg := verify.Comparable(got).Equal(nil)
30+
msg := verify.Obj(got).Equal(nil)
3131
assertPassed(t, msg)
3232
})
3333
})
@@ -36,61 +36,61 @@ func TestComparable(t *testing.T) {
3636
t.Run("Passed", func(t *testing.T) {
3737
want := A{Str: "string", Bool: true}
3838
got := A{Str: "wrong", Bool: true}
39-
msg := verify.Comparable(got).NotEqual(want)
39+
msg := verify.Obj(got).NotEqual(want)
4040
assertPassed(t, msg)
4141
})
4242
t.Run("Failed", func(t *testing.T) {
4343
want := A{Str: "string", Bool: true}
4444
got := A{Str: "string", Bool: true}
45-
msg := verify.Comparable(got).NotEqual(want)
45+
msg := verify.Obj(got).NotEqual(want)
4646
assertFailed(t, msg, "the objects are equal")
4747
})
4848
t.Run("nil", func(t *testing.T) {
4949
var got *A
50-
msg := verify.Comparable(got).NotEqual(nil)
50+
msg := verify.Obj(got).NotEqual(nil)
5151
assertFailed(t, msg, "the objects are equal")
5252
})
5353
})
5454

5555
t.Run("Zero", func(t *testing.T) {
5656
t.Run("Passed", func(t *testing.T) {
5757
got := A{}
58-
msg := verify.Comparable(got).Zero()
58+
msg := verify.Obj(got).Zero()
5959
assertPassed(t, msg)
6060
})
6161
t.Run("Failed", func(t *testing.T) {
6262
got := A{Str: "wrong"}
63-
msg := verify.Comparable(got).Zero()
63+
msg := verify.Obj(got).Zero()
6464
assertFailed(t, msg, "not a zero value\n")
6565
})
6666
t.Run("nil", func(t *testing.T) {
6767
var got *A
68-
msg := verify.Comparable(got).Zero()
68+
msg := verify.Obj(got).Zero()
6969
assertPassed(t, msg)
7070
})
7171
})
7272

7373
t.Run("NonZero", func(t *testing.T) {
7474
t.Run("Passed", func(t *testing.T) {
7575
got := A{Str: "string"}
76-
msg := verify.Comparable(got).NonZero()
76+
msg := verify.Obj(got).NonZero()
7777
assertPassed(t, msg)
7878
})
7979
t.Run("Failed", func(t *testing.T) {
8080
got := A{}
81-
msg := verify.Comparable(got).NonZero()
81+
msg := verify.Obj(got).NonZero()
8282
assertFailed(t, msg, "a zero value")
8383
})
8484
t.Run("nil", func(t *testing.T) {
8585
var got *A
86-
msg := verify.Comparable(got).NonZero()
86+
msg := verify.Obj(got).NonZero()
8787
assertFailed(t, msg, "a zero value")
8888
})
8989
})
9090

9191
t.Run("has assertions from Any", func(t *testing.T) {
9292
want := A{}
93-
got := verify.Comparable(want).FluentAny.Got // type embedding done properly
93+
got := verify.Obj(want).FluentAny.Got // type embedding done properly
9494
assertEqual(t, got, want)
9595
})
9696
}

error_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func TestError(t *testing.T) {
9090
got := verify.Error(want).FluentAny.Got // type embedding done properly
9191
assertEqual(t, got, want, cmpopts.EquateErrors())
9292
})
93-
t.Run("has assertions from String, Ordered, Comparable for string", func(t *testing.T) {
93+
t.Run("has assertions from String, Ordered, Obj for string", func(t *testing.T) {
9494
want := "an error"
9595
got := verify.Error(errors.New(want)).FluentString.Got // type embedding done properly
9696
assertEqual(t, got, want)

number.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type NumberFloat[T constraints.Number] struct {
1414

1515
// Number is used for testing numbers.
1616
func Number[T constraints.Number](got T) NumberFloat[T] {
17-
return NumberFloat[T]{FluentOrdered[T]{FluentComparable[T]{FluentAny[T]{got}}}}
17+
return NumberFloat[T]{FluentOrdered[T]{FluentObj[T]{FluentAny[T]{got}}}}
1818
}
1919

2020
// InDelta tests that the numbers have an absolute error (distance) less or equal than delta.

ordered.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import (
99
// FluentOrdered encapsulates assertions for ordered object
1010
// // that supports the operators < <= >= >.
1111
type FluentOrdered[T constraints.Ordered] struct {
12-
FluentComparable[T]
12+
FluentObj[T]
1313
}
1414

1515
// Ordered is used for testing a ordered object
1616
// that supports the operators < <= >= >.
1717
func Ordered[T constraints.Ordered](got T) FluentOrdered[T] {
18-
return FluentOrdered[T]{FluentComparable[T]{FluentAny[T]{got}}}
18+
return FluentOrdered[T]{FluentObj[T]{FluentAny[T]{got}}}
1919
}
2020

2121
// Lesser tests the objects using < operator.

ordered_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ func TestOrdered(t *testing.T) {
6767
})
6868
})
6969

70-
t.Run("has assertions from Comparable and Obj", func(t *testing.T) {
70+
t.Run("has assertions from Obj and Any", func(t *testing.T) {
7171
want := 123
72-
got := verify.Ordered(want).FluentComparable.FluentAny.Got // type embedding done properly
72+
got := verify.Ordered(want).FluentObj.FluentAny.Got // type embedding done properly
7373
assertEqual(t, got, want)
7474
})
7575
}

string.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type FluentString[T ~string] struct {
1313

1414
// String is used for testing a string object.
1515
func String[T ~string](got T) FluentString[T] {
16-
return FluentString[T]{FluentOrdered[T]{FluentComparable[T]{FluentAny[T]{got}}}}
16+
return FluentString[T]{FluentOrdered[T]{FluentObj[T]{FluentAny[T]{got}}}}
1717
}
1818

1919
// Empty tests if the string is not empty.

string_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ func TestString(t *testing.T) {
140140
})
141141
})
142142

143-
t.Run("has assertions from Ordered, Comparable, Obj", func(t *testing.T) {
143+
t.Run("has assertions from Ordered, Obj, Any", func(t *testing.T) {
144144
want := "text"
145-
got := verify.String(want).FluentOrdered.FluentComparable.FluentAny.Got // type embedding done properly
145+
got := verify.String(want).FluentOrdered.FluentObj.FluentAny.Got // type embedding done properly
146146
assertEqual(t, got, want)
147147
})
148148
}

0 commit comments

Comments
 (0)