~ubuntu-branches/ubuntu/utopic/sweethome3d/utopic

« back to all changes in this revision

Viewing changes to test/com/eteks/sweethome3d/junit/OBJWriterTest.java

  • Committer: Package Import Robot
  • Author(s): Gabriele Giacone
  • Date: 2013-11-05 13:02:16 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20131105130216-0e7dgqqvdq4pwm96
Tags: 4.2+dfsg-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
    HomeController homeController = new HomeController(home, preferences, viewFactory);
154
154
    homeController.getView().exportToOBJ(objFile.toString());
155
155
    
156
 
    assertEquals("Not same line count in OBJ file", 475, getLineCount(objFile.toURI().toURL()));
 
156
    assertEquals("Not same line count in OBJ file", 467, getLineCount(objFile.toURI().toURL()));
157
157
    assertEquals("Not same line count in MTL file", 43, getLineCount(mtlFile.toURI().toURL()));
158
158
    // Read file to check if its content is correct
159
159
    new OBJLoader().load(objFile.getAbsolutePath());