createSampleFile( ClientRepositoryPaths.getUserHomeFolderPath( USERNAME_SUZY ), fileName, "test", false, 123 );
// Test filename title matches created file name
assertEquals( fileName, file.getTitle() );
final IPentahoLocale SPANISH = new PentahoLocale( new Locale( "es" ) );
final IPentahoLocale US = new PentahoLocale( Locale.US );
final String EN_US_TITLE = "Locale Sample";
final String EN_US_DESCRIPTION = "This is a test for retrieving localized words";
final String SP_TITLE = "Muestra de Localizacion";
final String SP_DESCRIPTION = "Esta es una prueba para buscar palabras localizadas";
RepositoryFile.Builder builder = new RepositoryFile.Builder( file );
// Set English locale values
builder.title( US.toString(), EN_US_TITLE );
builder.description( US.toString(), EN_US_DESCRIPTION );
// Set Spanish locale values
builder.title( SPANISH.toString(), SP_TITLE );
builder.description( SPANISH.toString(), SP_DESCRIPTION );