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);
Configuration timesSquaredJobConf1 = TimesSquaredJob.createTimesSquaredJobConf(v, inputPath, outputPath);
Configuration customTimesSquaredJobConf1 = TimesSquaredJob.createTimesSquaredJobConf(initialConf, v, inputPath, outputPath);
assertNull(timesSquaredJobConf1.get(TEST_PROPERTY_KEY));