assertThat(os.getProducerUrl()).isEqualTo("http://www.microsoft.com/");
assertThat(os.getUrl()).isEqualTo("http://en.wikipedia.org/wiki/Windows_7");
assertThat(os.getVersionNumber().toVersionString()).isEqualTo("6.1");
// 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");
}