-
Notifications
You must be signed in to change notification settings - Fork 819
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch gopkg.in/check.v1 to quicktest
In my go test -v does not report any check. As such I think it would be better to switch to quicktest. This commit switch all test but fuzzy_test to quicktest, which is also already used in this library.
- Loading branch information
1 parent
c8a49a6
commit 0e6ed53
Showing
9 changed files
with
558 additions
and
551 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,81 @@ | ||
package xlsx | ||
|
||
import ( | ||
. "gopkg.in/check.v1" | ||
"testing" | ||
"time" | ||
) | ||
|
||
type DateSuite struct{} | ||
|
||
var _ = Suite(&DateSuite{}) | ||
qt "github.com/frankban/quicktest" | ||
) | ||
|
||
func (d *DateSuite) TestFractionOfADay(c *C) { | ||
func TestFractionOfADay(t *testing.T) { | ||
c := qt.New(t) | ||
var h, m, s, n int | ||
h, m, s, n = fractionOfADay(0) | ||
c.Assert(h, Equals, 0) | ||
c.Assert(m, Equals, 0) | ||
c.Assert(s, Equals, 0) | ||
c.Assert(n, Equals, 0) | ||
c.Assert(h, qt.Equals, 0) | ||
c.Assert(m, qt.Equals, 0) | ||
c.Assert(s, qt.Equals, 0) | ||
c.Assert(n, qt.Equals, 0) | ||
h, m, s, n = fractionOfADay(1.0 / 24.0) | ||
c.Assert(h, Equals, 1) | ||
c.Assert(m, Equals, 0) | ||
c.Assert(s, Equals, 0) | ||
c.Assert(n, Equals, 0) | ||
c.Assert(h, qt.Equals, 1) | ||
c.Assert(m, qt.Equals, 0) | ||
c.Assert(s, qt.Equals, 0) | ||
c.Assert(n, qt.Equals, 0) | ||
} | ||
|
||
func (d *DateSuite) TestJulianDateToGregorianTime(c *C) { | ||
func TestJulianDateToGregorianTime(t *testing.T) { | ||
c := qt.New(t) | ||
c.Assert(julianDateToGregorianTime(2400000.5, 51544.0), | ||
Equals, time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)) | ||
qt.Equals, time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)) | ||
c.Assert(julianDateToGregorianTime(2400000.5, 51544.5), | ||
Equals, time.Date(2000, 1, 1, 12, 0, 0, 0, time.UTC)) | ||
qt.Equals, time.Date(2000, 1, 1, 12, 0, 0, 0, time.UTC)) | ||
c.Assert(julianDateToGregorianTime(2400000.5, 51544.245), | ||
Equals, time.Date(2000, 1, 1, 5, 52, 48, 0, time.UTC)) | ||
qt.Equals, time.Date(2000, 1, 1, 5, 52, 48, 0, time.UTC)) | ||
c.Assert(julianDateToGregorianTime(2400000.5, 51544.2456), | ||
Equals, time.Date(2000, 1, 1, 5, 53, 39, 840000000, time.UTC)) | ||
qt.Equals, time.Date(2000, 1, 1, 5, 53, 39, 840000000, time.UTC)) | ||
/* test rounding: 0.24560789123*24*3600 = 21220.521802272 */ | ||
c.Assert(julianDateToGregorianTime(2400000.5, 51544.24560789123), | ||
Equals, time.Date(2000, 1, 1, 5, 53, 40, 521802000, time.UTC)) | ||
qt.Equals, time.Date(2000, 1, 1, 5, 53, 40, 521802000, time.UTC)) | ||
c.Assert(julianDateToGregorianTime(2400000.5, 51544.1), | ||
Equals, time.Date(2000, 1, 1, 2, 24, 00, 0, time.UTC)) | ||
qt.Equals, time.Date(2000, 1, 1, 2, 24, 00, 0, time.UTC)) | ||
c.Assert(julianDateToGregorianTime(2400000.5, 51544.75), | ||
Equals, time.Date(2000, 1, 1, 18, 0, 0, 0, time.UTC)) | ||
qt.Equals, time.Date(2000, 1, 1, 18, 0, 0, 0, time.UTC)) | ||
} | ||
|
||
func (d *DateSuite) TestTimeFromExcelTime(c *C) { | ||
func TestTimeFromExcelTime(t *testing.T) { | ||
c := qt.New(t) | ||
date := TimeFromExcelTime(0, false) | ||
c.Assert(date, Equals, time.Date(1899, 12, 30, 0, 0, 0, 0, time.UTC)) | ||
c.Assert(date, qt.Equals, time.Date(1899, 12, 30, 0, 0, 0, 0, time.UTC)) | ||
date = TimeFromExcelTime(60, false) | ||
c.Assert(date, Equals, time.Date(1900, 2, 28, 0, 0, 0, 0, time.UTC)) | ||
c.Assert(date, qt.Equals, time.Date(1900, 2, 28, 0, 0, 0, 0, time.UTC)) | ||
date = TimeFromExcelTime(61, false) | ||
c.Assert(date, Equals, time.Date(1900, 3, 1, 0, 0, 0, 0, time.UTC)) | ||
c.Assert(date, qt.Equals, time.Date(1900, 3, 1, 0, 0, 0, 0, time.UTC)) | ||
date = TimeFromExcelTime(41275.0, false) | ||
c.Assert(date, Equals, time.Date(2013, 1, 1, 0, 0, 0, 0, time.UTC)) | ||
c.Assert(date, qt.Equals, time.Date(2013, 1, 1, 0, 0, 0, 0, time.UTC)) | ||
date = TimeFromExcelTime(401769, false) | ||
c.Assert(date, Equals, time.Date(3000, 1, 1, 0, 0, 0, 0, time.UTC)) | ||
c.Assert(date, qt.Equals, time.Date(3000, 1, 1, 0, 0, 0, 0, time.UTC)) | ||
} | ||
|
||
func (d *DateSuite) TestTimeFromExcelTimeWithFractionalPart(c *C) { | ||
func TestTimeFromExcelTimeWithFractionalPart(t *testing.T) { | ||
c := qt.New(t) | ||
date := TimeFromExcelTime(0.114583333333333, false) | ||
c.Assert(date.Round(time.Second), Equals, time.Date(1899, 12, 30, 2, 45, 0, 0, time.UTC)) | ||
c.Assert(date.Round(time.Second), qt.Equals, time.Date(1899, 12, 30, 2, 45, 0, 0, time.UTC)) | ||
|
||
date = TimeFromExcelTime(60.1145833333333, false) | ||
c.Assert(date.Round(time.Second), Equals, time.Date(1900, 2, 28, 2, 45, 0, 0, time.UTC)) | ||
c.Assert(date.Round(time.Second), qt.Equals, time.Date(1900, 2, 28, 2, 45, 0, 0, time.UTC)) | ||
|
||
date = TimeFromExcelTime(61.3986111111111, false) | ||
c.Assert(date.Round(time.Second), Equals, time.Date(1900, 3, 1, 9, 34, 0, 0, time.UTC)) | ||
c.Assert(date.Round(time.Second), qt.Equals, time.Date(1900, 3, 1, 9, 34, 0, 0, time.UTC)) | ||
|
||
date = TimeFromExcelTime(37947.75, false) | ||
c.Assert(date.Round(time.Second), Equals, time.Date(2003, 11, 22, 18, 0, 0, 0, time.UTC)) | ||
c.Assert(date.Round(time.Second), qt.Equals, time.Date(2003, 11, 22, 18, 0, 0, 0, time.UTC)) | ||
|
||
date = TimeFromExcelTime(41275.1145833333, false) | ||
c.Assert(date.Round(time.Second), Equals, time.Date(2013, 1, 1, 2, 45, 0, 0, time.UTC)) | ||
c.Assert(date.Round(time.Second), qt.Equals, time.Date(2013, 1, 1, 2, 45, 0, 0, time.UTC)) | ||
} | ||
|
||
func (d *DateSuite) TestTimeFromExcelTimeWith1904Offest(c *C) { | ||
func TestTimeFromExcelTimeWith1904Offest(t *testing.T) { | ||
c := qt.New(t) | ||
date1904Offset := TimeFromExcelTime(39813.0, true) | ||
c.Assert(date1904Offset, Equals, time.Date(2013, 1, 1, 0, 0, 0, 0, time.UTC)) | ||
c.Assert(date1904Offset, qt.Equals, time.Date(2013, 1, 1, 0, 0, 0, 0, time.UTC)) | ||
|
||
} |
Oops, something went wrong.