summaryrefslogtreecommitdiff
path: root/src/lib/testing.go
AgeCommit message (Expand)AuthorFilesLines
2009-05-05directory-per-package step 1: move files from lib/X.go to lib/X/X.goRob Pike1-135/+0
2009-04-16Convert go tree to hierarchical pkg directory:Russ Cox1-1/+1
2009-03-05document testing and incidentally gotestRob Pike1-0/+25
2009-01-30update go code tree to new func rules.Russ Cox1-1/+1
2009-01-20delete exportRuss Cox1-3/+3
2009-01-16casify struct fields in entire tree.Russ Cox1-6/+6
2009-01-16casify, cleanup sysRuss Cox1-2/+2
2009-01-16casify a few moreRob Pike1-6/+6
2009-01-15printf->Printf etc.Rob Pike1-2/+2
2009-01-09simplify flag interface. no more BVal etc. you just get a pointer.Rob Pike1-6/+3
2009-01-06new new & makeRuss Cox1-2/+2
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-2/+2
2008-12-18convert *[] to [].Russ Cox1-1/+1
2008-11-25gotest: change pattern to Test([^a-z].*)?Russ Cox1-1/+1
2008-11-21utf8 routines in go; a start.Russ Cox1-0/+1
2008-11-20automatically add tabs after newlinesRob Pike1-2/+12
2008-11-19change naming convention for tests fromRob Pike1-0/+3
2008-11-19add a type testing.T and use it in tests.Rob Pike1-12/+66
2008-11-19gotest, via testing.go, should warn you if you failed to create any tests.Rob Pike1-0/+5
2008-11-18add -chatty flag to test.Russ Cox1-5/+19
2008-11-18testing support libraryRob Pike1-0/+26