diff options
| author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-06-27 11:55:45 +0200 | 
|---|---|---|
| committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-06-27 11:55:45 +0200 | 
| commit | a9f46e2164f0d9ce416f34ebcb68d532de98cdb2 (patch) | |
| tree | e66ad903863bc37d1a0178dbc1297d24820487df /target/site/jacoco/musichub.business/AudioElement.java.html | |
| parent | 2969d3ea0553e5a1eed8db274bb89e94a082b1c1 (diff) | |
Starting Song tests
Diffstat (limited to 'target/site/jacoco/musichub.business/AudioElement.java.html')
| -rw-r--r-- | target/site/jacoco/musichub.business/AudioElement.java.html | 54 | 
1 files changed, 27 insertions, 27 deletions
diff --git a/target/site/jacoco/musichub.business/AudioElement.java.html b/target/site/jacoco/musichub.business/AudioElement.java.html index 4401836..28d9e57 100644 --- a/target/site/jacoco/musichub.business/AudioElement.java.html +++ b/target/site/jacoco/musichub.business/AudioElement.java.html @@ -21,39 +21,39 @@ public abstract class AudioElement {      protected UUID uuid;      protected String content; -<span class="nc" id="L24">    public AudioElement(String title, String artist, int lengthInSeconds, String id, String content) {</span> -<span class="nc" id="L25">        this.title = title;</span> -<span class="nc" id="L26">        this.artist = artist;</span> -<span class="nc" id="L27">        this.lengthInSeconds = lengthInSeconds;</span> -<span class="nc" id="L28">        this.uuid = UUID.fromString(id);</span> -<span class="nc" id="L29">        this.content = content;</span> -<span class="nc" id="L30">    }</span> - -<span class="nc" id="L32">    public AudioElement(String title, String artist, int lengthInSeconds, String content) {</span> -<span class="nc" id="L33">        this.title = title;</span> -<span class="nc" id="L34">        this.artist = artist;</span> -<span class="nc" id="L35">        this.lengthInSeconds = lengthInSeconds;</span> -<span class="nc" id="L36">        this.content = content;</span> -<span class="nc" id="L37">        this.uuid = UUID.randomUUID();</span> -<span class="nc" id="L38">    }</span> - -<span class="nc" id="L40">    public AudioElement(Element xmlElement) {</span> +<span class="fc" id="L24">    public AudioElement(String title, String artist, int lengthInSeconds, String id, String content) {</span> +<span class="fc" id="L25">        this.title = title;</span> +<span class="fc" id="L26">        this.artist = artist;</span> +<span class="fc" id="L27">        this.lengthInSeconds = lengthInSeconds;</span> +<span class="fc" id="L28">        this.uuid = UUID.fromString(id);</span> +<span class="fc" id="L29">        this.content = content;</span> +<span class="fc" id="L30">    }</span> + +<span class="fc" id="L32">    public AudioElement(String title, String artist, int lengthInSeconds, String content) {</span> +<span class="fc" id="L33">        this.title = title;</span> +<span class="fc" id="L34">        this.artist = artist;</span> +<span class="fc" id="L35">        this.lengthInSeconds = lengthInSeconds;</span> +<span class="fc" id="L36">        this.content = content;</span> +<span class="fc" id="L37">        this.uuid = UUID.randomUUID();</span> +<span class="fc" id="L38">    }</span> + +<span class="fc" id="L40">    public AudioElement(Element xmlElement) {</span>          { -<span class="nc" id="L42">            title = xmlElement.getElementsByTagName("title").item(0).getTextContent();</span> -<span class="nc" id="L43">            artist = xmlElement.getElementsByTagName("artist").item(0).getTextContent();</span> -<span class="nc" id="L44">            lengthInSeconds = Integer.parseInt(xmlElement.getElementsByTagName("length").item(0).getTextContent());</span> -<span class="nc" id="L45">            content = xmlElement.getElementsByTagName("content").item(0).getTextContent();</span> -<span class="nc" id="L46">            String uuid = null;</span> +<span class="fc" id="L42">            title = xmlElement.getElementsByTagName("title").item(0).getTextContent();</span> +<span class="fc" id="L43">            artist = xmlElement.getElementsByTagName("artist").item(0).getTextContent();</span> +<span class="fc" id="L44">            lengthInSeconds = Integer.parseInt(xmlElement.getElementsByTagName("length").item(0).getTextContent());</span> +<span class="fc" id="L45">            content = xmlElement.getElementsByTagName("content").item(0).getTextContent();</span> +<span class="fc" id="L46">            String uuid = null;</span>              try { -<span class="nc" id="L48">                uuid = xmlElement.getElementsByTagName("UUID").item(0).getTextContent();</span> +<span class="fc" id="L48">                uuid = xmlElement.getElementsByTagName("UUID").item(0).getTextContent();</span>  <span class="nc" id="L49">            } catch (Exception ex) {</span>  <span class="nc" id="L50">                System.out.println("Empty element UUID, will create a new one");</span> -<span class="nc" id="L51">            }</span> -<span class="nc bnc" id="L52" title="All 4 branches missed.">            if ((uuid == null) || (uuid.isEmpty()))</span> +<span class="fc" id="L51">            }</span> +<span class="pc bpc" id="L52" title="2 of 4 branches missed.">            if ((uuid == null) || (uuid.isEmpty()))</span>  <span class="nc" id="L53">                this.uuid = UUID.randomUUID();</span> -<span class="nc" id="L54">            else this.uuid = UUID.fromString(uuid);</span> +<span class="fc" id="L54">            else this.uuid = UUID.fromString(uuid);</span>          } -<span class="nc" id="L56">    }</span> +<span class="fc" id="L56">    }</span>      public UUID getUUID() {  <span class="nc" id="L59">        return this.uuid;</span>  | 
