github.com/blend/go-sdk@v1.20220411.3/timeutil/ascending_test.go (about) 1 /* 2 3 Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved 4 Use of this source code is governed by a MIT license that can be found in the LICENSE file. 5 6 */ 7 8 package timeutil 9 10 import ( 11 "sort" 12 "testing" 13 "time" 14 15 "github.com/blend/go-sdk/assert" 16 ) 17 18 func TestAscending(t *testing.T) { 19 assert := assert.New(t) 20 21 times := []time.Time{ 22 time.Date(2019, 02, 13, 00, 00, 00, 00, time.UTC), 23 time.Date(2019, 02, 12, 00, 00, 00, 00, time.UTC), 24 time.Date(2019, 02, 11, 00, 00, 00, 00, time.UTC), 25 time.Date(2019, 02, 10, 00, 00, 00, 00, time.UTC), 26 } 27 28 sort.Sort(Ascending(times)) 29 assert.Equal(10, times[0].Day()) 30 }