public void testGetNuspecTmpFile() throws Exception {
//GIVEN
try (InputStream inputStream = this.getClass().getResourceAsStream("/NUnit.2.5.9.10348.nupkg")) {
//WHEN
TempNupkgFile nupkgFile = new TempNupkgFile(inputStream);
NuspecFile nuspecFile = nupkgFile.getNuspecFile();
//THEN
assertNotNull("Спецификация пакета", nuspecFile);
assertEquals("Описание пакета", "Пакет модульного тестирования", nuspecFile.getDescription());
assertEquals("Идентификатор пакета", "NUnit", nuspecFile.getId());
assertEquals("Версия пакета", Version.parse("2.5.9.10348"), nuspecFile.getVersion());
}
}