throw notifier.exception;
}
}
private Job createSimpleJob() {
Job job = new Job();
Board board = new Board();
board.setName("test");
board.addPlacement(createPlacement("R1", "R-0805-10K", 10, 10, 0, 45,
Side.Top));
board.addPlacement(createPlacement("R2", "R-0805-10K", 20, 20, 0, 90,
Side.Top));
BoardLocation boardLocation = new BoardLocation(board);
boardLocation.setLocation(new Location(LengthUnit.Millimeters, 0, 0, 0,
0));
boardLocation.setSide(Side.Top);
job.addBoardLocation(boardLocation);
return job;
}