assertThat(os.getProducer()).isEqualTo("Apple Computer, Inc.");
assertThat(os.getProducerUrl()).isEqualTo("http://www.apple.com/");
assertThat(os.getUrl()).isEqualTo("http://www.apple.com/osx/");
// check device category informations
final DeviceCategory category = agent.getDeviceCategory();
assertThat(category.getCategory()).isEqualTo(Category.PERSONAL_COMPUTER);
assertThat(category.getName()).isEqualTo(Category.PERSONAL_COMPUTER.getName());
assertThat(category.getIcon()).isEqualTo("desktop.png");
assertThat(category.getInfoUrl()).isEqualTo("/list-of-ua/device-detail?device=Personal computer");
}