(t *testing.T)
| 26 | } |
| 27 | |
| 28 | func TestToLower(t *testing.T) { |
| 29 | It("toLower", func() { |
| 30 | str := "AaBbCcDdEeFfGg" |
| 31 | Expect(ToLower(str)).To(Equal(strings.ToLower(str))) |
| 32 | |
| 33 | str = "ABCDE" |
| 34 | Expect(ToLower(str)).To(Equal(strings.ToLower(str))) |
| 35 | |
| 36 | str = "ABCDE" |
| 37 | Expect(ToLower(str)).To(Equal(strings.ToLower(str))) |
| 38 | |
| 39 | str = "abced" |
| 40 | Expect(ToLower(str)).To(Equal(strings.ToLower(str))) |
| 41 | }) |
| 42 | } |
| 43 | |
| 44 | func TestIsLower(t *testing.T) { |
| 45 | It("isLower", func() { |