()
| 1158 | } |
| 1159 | |
| 1160 | func (c *concurrentTest) AssertComplete() { |
| 1161 | c.mutex.Lock() |
| 1162 | defer c.mutex.Unlock() |
| 1163 | assert.Equal(c.t, 0, c.previousValidation, "last validation") |
| 1164 | } |
| 1165 | |
| 1166 | func newConcurrentTest(t *testing.T, cloud *awsup.MockAWSCloud, numSurge int, allNeedUpdate bool) *concurrentTest { |
| 1167 | test := concurrentTest{ |
no test coverage detected