nacx commented on this pull request.
> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jclouds.dimensiondata.cloudcontrol.options; + +import com.google.common.collect.Multimap; +import org.testng.annotations.BeforeMethod; +import org.testng.annotations.Test; + +import java.util.Collection; + +import static org.testng.Assert.assertEquals; +import static org.testng.Assert.assertTrue; + +@Test(groups = "unit", testName = "PaginationOptionsTest", singleThreaded = true) Instead of making it single-threaded, I'd rather declare the `PaginationOptions` in each method. It's a very simple object and won't introduce much overhead (and you're already *creating* it before every method, so it should be OK to move the declaration and creation to each test method instead of having a class variable). -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/377#discussion_r108098247
