hfurubotten / autograder

Automatic management and build tool for lab assignments. Moved to organization autograde: https://github.com/autograde
https://github.com/autograde
Other
14 stars 7 forks source link

ci/score: rename DumpScoreToStudent() #11

Closed meling closed 9 years ago

meling commented 9 years ago

func (s *Score) DumpScoreToStudent(t *testing.T) ==> func (s *Score) String() string

Requires rewrite in test cases from sc.DumpScoreToStudent(t) to t.Log(sc) or fmt.Println(sc). I prefer the latter version.

meling commented 9 years ago

I've added the String() method, but haven't removed the Dump method. I'll close this once we've upgraded the test cases. We ought to do it before the next handout.