1 package com.google.code.beanmatchers; 2 3 import java.util.Random; 4 5 class DoubleGenerator implements ValueGenerator<Double> { 6 7 private final Random random; 8 9 public DoubleGenerator(Random random) { 10 this.random = random; 11 } 12 13 public Double generate() { 14 return random.nextDouble(); 15 } 16 }