Path baseTmpDirPath = getTestTempDirPath("testpaths");
Path inputPath = new Path(baseTmpDirPath, "input");
Path outputPath = new Path(baseTmpDirPath, "output");
Vector v = new RandomAccessSparseVector(50);
v.assign(1.0);
Job timesSquaredJob1 = TimesSquaredJob.createTimesSquaredJob(v, inputPath, outputPath);
Job customTimesSquaredJob1 = TimesSquaredJob.createTimesSquaredJob(initialConf, v, inputPath, outputPath);
assertNull(timesSquaredJob1.getConfiguration().get(TEST_PROPERTY_KEY));