Add some Javadoc. No functional changes.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2285 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Tom Morris 2011-10-07 16:29:14 +00:00
parent 18f32ed7e8
commit 4a4daf7112

View File

@ -1,6 +1,6 @@
/*
Copyright 2010, Google Inc.
Copyright 2010,2011 Google Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
@ -59,6 +59,13 @@ public class RefineTest {
System.setProperty("log4j.configuration", "tests.log4j.properties");
}
/**
* Check that a project was created with the appropriate number of columns and rows.
*
* @param project project to check
* @param numCols expected column count
* @param numRows expected row count
*/
public static void assertProjectCreated(Project project, int numCols, int numRows) {
Assert.assertNotNull(project);
Assert.assertNotNull(project.columnModel);