@Test
 public void testBoard() {
   BoardDescriptor boardid =
       BoardsManager.getBoardID(
           this.mJsonFileName, this.mPackageName, this.mPlatform, this.mBoardID, this.myOptions);
   if (boardid == null) {
     fail(
         "Board "
             + this.mJsonFileName
             + " "
             + " "
             + this.mPackageName
             + " "
             + this.mPlatform
             + " "
             + this.mBoardID
             + " not found");
     return;
   }
   BuildAndVerify(boardid);
 }