<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blog de Antonio Manuel Muñiz &#187; QA</title>
	<atom:link href="http://amunizmartin.wordpress.com/tag/qa/feed/" rel="self" type="application/rss+xml" />
	<link>http://amunizmartin.wordpress.com</link>
	<description>Desarrollo, Ingeniería y Calidad del Software</description>
	<lastBuildDate>Mon, 30 Nov 2009 19:27:18 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='amunizmartin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3f7b8b4861abbf6680395419293e44a6?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Blog de Antonio Manuel Muñiz &#187; QA</title>
		<link>http://amunizmartin.wordpress.com</link>
	</image>
			<item>
		<title>Sonar y Continuum (La calidad bajo control II)</title>
		<link>http://amunizmartin.wordpress.com/2008/07/08/sonar-y-continuum-la-calidad-bajo-control-ii/</link>
		<comments>http://amunizmartin.wordpress.com/2008/07/08/sonar-y-continuum-la-calidad-bajo-control-ii/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 22:57:12 +0000</pubDate>
		<dc:creator>Antonio Manuel Muñiz Martín</dc:creator>
				<category><![CDATA[Herramientas]]></category>
		<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Continuum]]></category>
		<category><![CDATA[Integración continua]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Sonar]]></category>

		<guid isPermaLink="false">http://amunizmartin.wordpress.com/?p=25</guid>
		<description><![CDATA[Hace algún tiempo comentaba cómo Sonar proporciona una serie de medidas de calidad del software. Integrar esta herramienta en el proceso de integración continua modelado con Apache Continuum no ha sido tan fácil como esperaba, sin embargo el resultado merece la pena.
En primer lugar tenemos que instalar y configurar Sonar 1.4RC1. La configuración por defecto [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amunizmartin.wordpress.com&blog=3563308&post=25&subd=amunizmartin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hace algún tiempo <a href="http://amunizmartin.wordpress.com/2008/05/10/sonar-medidas-de-la-calidad-del-software/" target="_blank">comentaba</a> cómo Sonar proporciona una serie de medidas de calidad del software. Integrar esta herramienta en el proceso de integración continua modelado con Apache Continuum no ha sido tan fácil como esperaba, sin embargo el resultado merece la pena.</p>
<p>En primer lugar tenemos que instalar y configurar Sonar 1.4RC1. La configuración por defecto hace que la aplicación use una base de datos en ficheros (derby). Dada la <a href="http://jira.codehaus.org/browse/SONAR-154" target="_blank">restricción</a> impuesta para la configuración con derby haremos que Sonar utilice una base de datos MySQL, esta configuración será necesaria si Sonar y Continuum están en hosts distintos. Debemos comentar en el fichero sonar.properties las lineas:</p>
<pre>#sonar.jdbc.url:  jdbc:derby://localhost:1527/sonar;create=true
#sonar.jdbc.driver:  org.apache.derby.jdbc.ClientDriver</pre>
<p>y descomentar (sustituyendo &lt;host&gt; y &lt;port&gt; por el host y el puerto de la base de datos):</p>
<pre>sonar.jdbc.url:  jdbc:mysql://&lt;host&gt;:&lt;port&gt;/sonar?autoReconnect=true&amp;useUnicode=true&amp;characterEncoding=utf8
sonar.jdbc.driver:  com.mysql.jdbc.Driver</pre>
<p>En el fichero sonar.properties también podemos configurar el puerto y el path de la aplicación:</p>
<pre>sonar.web.port:  80
sonar.web.context:  /sonar</pre>
<p>Para terminar con la configuración debemos crear una base de datos llamada &#8220;sonar&#8221; y un usuario con permisos que pueda conectarse desde cualquier host.</p>
<p>Ahora debemos configurar nuestro proyecto Maven para ser desplegado en Sonar. Para ello incluiremos un perfil en el fichero POM:</p>
<pre>&lt;profile&gt;
    &lt;id&gt;sonar&lt;/id&gt;
    &lt;activation&gt;
        &lt;property&gt;
            &lt;name&gt;env&lt;/name&gt;
            &lt;value&gt;sonar&lt;/value&gt;
        &lt;/property&gt;
    &lt;/activation&gt;
    &lt;properties&gt;
        &lt;!-- URL de la instancia de Sonar --&gt;
        &lt;sonar.host.url&gt;http://&lt;sonar_host&gt;:&lt;port&gt;/&lt;path&gt;&lt;/sonar.host.url&gt;
        &lt;!-- URL de la base de datos --&gt;
        &lt;sonar.jdbc.url&gt;jdbc:mysql://&lt;db_host&gt;:&lt;port&gt;/sonar&lt;/sonar.jdbc.url&gt;
        &lt;!-- Driver para MySQL --&gt;
        &lt;sonar.jdbc.driver&gt;com.mysql.jdbc.Driver&lt;/sonar.jdbc.driver&gt;
        &lt;!-- Usuario de base de datos con permisos sobre la BD "sonar" --&gt;
        &lt;sonar.jdbc.username&gt;username&lt;/sonar.jdbc.username&gt;
        &lt;!-- Password el usuario anterior --&gt;
        &lt;sonar.jdbc.password&gt;password&lt;/sonar.jdbc.password&gt;
    &lt;/properties&gt;
&lt;/profile&gt;</pre>
<p>Para desplegar el proyecto en Sonar ejecutaremos:</p>
<pre>mvn -Psonar org.codehaus.sonar:sonar-maven-plugin:1.4RC1:sonar</pre>
<p>En este se ha usado el plugin para la versión 1.4RC1 de Sonar, la versión del plugin debe ser la misma que la del servidor.</p>
<p>Si incluimos esta tarea en Continuum para que se ejecute cada noche entonces cada mañana tendremos un reciente análisis estático del código de nuestro proyecto.</p>
<div id="attachment_26" class="wp-caption aligncenter" style="width: 310px"><a href="http://amunizmartin.files.wordpress.com/2008/07/continuum.png"><img class="size-medium wp-image-26" src="http://amunizmartin.files.wordpress.com/2008/07/continuum.png?w=300&#038;h=106" alt="Continuum" width="300" height="106" /></a><p class="wp-caption-text">Incluir tarea en Continuum</p></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/amunizmartin.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/amunizmartin.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amunizmartin.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amunizmartin.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amunizmartin.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amunizmartin.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amunizmartin.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amunizmartin.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amunizmartin.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amunizmartin.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amunizmartin.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amunizmartin.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amunizmartin.wordpress.com&blog=3563308&post=25&subd=amunizmartin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amunizmartin.wordpress.com/2008/07/08/sonar-y-continuum-la-calidad-bajo-control-ii/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d30bd2fcdb387d2f82405c2a65298937?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Antonio Manuel Muñiz Martín</media:title>
		</media:content>

		<media:content url="http://amunizmartin.files.wordpress.com/2008/07/continuum.png?w=300" medium="image">
			<media:title type="html">Continuum</media:title>
		</media:content>
	</item>
		<item>
		<title>QA&amp;Test 2008</title>
		<link>http://amunizmartin.wordpress.com/2008/06/11/qatest-2008/</link>
		<comments>http://amunizmartin.wordpress.com/2008/06/11/qatest-2008/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 22:34:09 +0000</pubDate>
		<dc:creator>Antonio Manuel Muñiz Martín</dc:creator>
				<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[QATest 2008]]></category>

		<guid isPermaLink="false">http://amunizmartin.wordpress.com/?p=21</guid>
		<description><![CDATA[Del 29 al 31 de Octubre se celebra en Bilbao uno de los eventos más importantes en España sobre Quality Assurance. Aún esta por confirmar el programa de QA&#38;Test 2008, pero algunos de los temas que se tratarán son, entre otros:

Aseguramiento  de la calidad de los procesos y mediciones de calidad productos y procesos
Automatización [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amunizmartin.wordpress.com&blog=3563308&post=21&subd=amunizmartin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Del 29 al 31 de Octubre se celebra en Bilbao uno de los eventos más importantes en España sobre Quality Assurance. Aún esta por confirmar el programa de <a href="http://www.qatest.org/es" target="_blank">QA&amp;Test 2008</a>, pero algunos de los temas que se tratarán son, entre otros:</p>
<ul>
<li>Aseguramiento  de la calidad de los procesos y mediciones de calidad productos y procesos</li>
<li>Automatización  de las pruebas</li>
<li>Generación  automatizada de pruebas</li>
<li>Implementación  Suite de herramientas en el ciclo de vida del  desarrollo del producto</li>
<li>Modelos de madurez en procesos de testing</li>
<li>Testing  de carga y rendimiento</li>
<li>Testing  de integración y unidad</li>
<li>Trabajo  en equipo dentro de los equipos de Test</li>
</ul>
<p>Aún sin conocer el programa concreto estoy seguro que el congreso será más que interesante. Espero tener tiempo para asistir.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/amunizmartin.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/amunizmartin.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amunizmartin.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amunizmartin.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amunizmartin.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amunizmartin.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amunizmartin.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amunizmartin.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amunizmartin.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amunizmartin.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amunizmartin.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amunizmartin.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amunizmartin.wordpress.com&blog=3563308&post=21&subd=amunizmartin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amunizmartin.wordpress.com/2008/06/11/qatest-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d30bd2fcdb387d2f82405c2a65298937?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Antonio Manuel Muñiz Martín</media:title>
		</media:content>
	</item>
		<item>
		<title>Encuentro Ecosistemas Software</title>
		<link>http://amunizmartin.wordpress.com/2008/06/11/encuentro-ecosistemas-software/</link>
		<comments>http://amunizmartin.wordpress.com/2008/06/11/encuentro-ecosistemas-software/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 22:16:29 +0000</pubDate>
		<dc:creator>Antonio Manuel Muñiz Martín</dc:creator>
				<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Ecosistema Software]]></category>
		<category><![CDATA[QA]]></category>

		<guid isPermaLink="false">http://amunizmartin.wordpress.com/?p=20</guid>
		<description><![CDATA[El proximo Jueves 12 de Junio será la fecha del primer encuentro de personas interesadas en el mundo de los ecosistemas software. La desconferencia, como la ha bautizado Manuel Recena, será un punto de intercambio de información, visiones, experiencia en torno al término Ecosistema Software. El encuentro se ha gestado en el seno del grupo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amunizmartin.wordpress.com&blog=3563308&post=20&subd=amunizmartin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>El proximo Jueves 12 de Junio será la fecha del primer encuentro de personas interesadas en el mundo de los ecosistemas software. La <a href="http://www.manuelrecena.com/blog/archives/159" target="_blank">desconferencia</a>, como la ha bautizado Manuel Recena, será un punto de intercambio de información, visiones, experiencia en torno al término Ecosistema Software. El encuentro se ha gestado en el seno del <a href="http://groups.google.com/group/ecosistemas-software" target="_blank">grupo</a> dedicado a este tema.</p>
<p>Espero con impaciencia el día D, por supuesto para aportar todo lo posible, pero también para aprender. Si todos los días se aprende algo, imagina en este.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/amunizmartin.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/amunizmartin.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amunizmartin.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amunizmartin.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amunizmartin.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amunizmartin.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amunizmartin.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amunizmartin.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amunizmartin.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amunizmartin.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amunizmartin.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amunizmartin.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amunizmartin.wordpress.com&blog=3563308&post=20&subd=amunizmartin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amunizmartin.wordpress.com/2008/06/11/encuentro-ecosistemas-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d30bd2fcdb387d2f82405c2a65298937?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Antonio Manuel Muñiz Martín</media:title>
		</media:content>
	</item>
		<item>
		<title>Una iniciativa: Testing Experience</title>
		<link>http://amunizmartin.wordpress.com/2008/05/28/una-iniciativa-testing-experience/</link>
		<comments>http://amunizmartin.wordpress.com/2008/05/28/una-iniciativa-testing-experience/#comments</comments>
		<pubDate>Wed, 28 May 2008 19:47:42 +0000</pubDate>
		<dc:creator>Antonio Manuel Muñiz Martín</dc:creator>
				<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Publicaciones]]></category>
		<category><![CDATA[QA]]></category>

		<guid isPermaLink="false">http://amunizmartin.wordpress.com/?p=18</guid>
		<description><![CDATA[Hace unos dos meses buscando algún tipo de publicación sobre calidad del software y testing encontré una (mas o menos bienal) sobre el el tema. Se trata de una revista (disponible en formato electrónico y en papel) llamada Testing Experience. La publicación es totalmente gratuita, una gran noticia teniendo en cuenta que cualquier libro sobre [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amunizmartin.wordpress.com&blog=3563308&post=18&subd=amunizmartin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hace unos dos meses buscando algún tipo de publicación sobre calidad del software y testing encontré una (mas o menos bienal) sobre el el tema. Se trata de una revista (disponible en formato electrónico y en papel) llamada <a href="http://testingexperience.com/" target="_blank">Testing Experience</a>. La publicación es totalmente gratuita, una gran noticia teniendo en cuenta que cualquier libro sobre la materia no baja de los 60 Euros.</p>
<p>La verdad es que es bastante interesante, algunos de los temas tratados son más técnicos y otros no tanto, pero en general esta muy bien. Sobre todo hay que valorar la iniciativa de este grupo de personas al sacar a la luz una revista sobre un tema en plena efervescencia en la actualidad del mundo del software.</p>
<p>Me gustaría destacar en el número de este mes el artículo titulado &#8220;Turning software testing into the backbone of your quality assurance system&#8221;. El artículo expone la importancia de las pruebas en el aseguramiento de la calidad, pero indica que no lo son todo, y basar la calidad del software solo en las pruebas es un error, por supuesto comparto esta idea, hay otros muchos aspectos que componen la calidad, como aspectos relacionados con analisis estático del código fuente, la calidad de la documentación, el proceso de construcción, la automatización del despliegue, etc</p>
<p>Por último solo decir que aunque la revista es alemana, me ha sorprendido que su director es español, José Manuel Díaz Delgado.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/amunizmartin.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/amunizmartin.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amunizmartin.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amunizmartin.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amunizmartin.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amunizmartin.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amunizmartin.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amunizmartin.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amunizmartin.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amunizmartin.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amunizmartin.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amunizmartin.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amunizmartin.wordpress.com&blog=3563308&post=18&subd=amunizmartin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://amunizmartin.wordpress.com/2008/05/28/una-iniciativa-testing-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d30bd2fcdb387d2f82405c2a65298937?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Antonio Manuel Muñiz Martín</media:title>
		</media:content>
	</item>
	</channel>
</rss>