aboutsummaryrefslogtreecommitdiff
path: root/target/site/jacoco/musichub.business/AudioElement.java.html
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-06-27 12:12:56 +0200
committerClyhtsuriva <aimeric@adjutor.xyz>2021-06-27 12:12:56 +0200
commitf9de1516a05f91e5632500a3b0a898938d6c795e (patch)
tree3658a35977b2019da078f650bafc56820d41e6eb /target/site/jacoco/musichub.business/AudioElement.java.html
parenta9f46e2164f0d9ce416f34ebcb68d532de98cdb2 (diff)
Song class fully covered.
Diffstat (limited to 'target/site/jacoco/musichub.business/AudioElement.java.html')
-rw-r--r--target/site/jacoco/musichub.business/AudioElement.java.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/target/site/jacoco/musichub.business/AudioElement.java.html b/target/site/jacoco/musichub.business/AudioElement.java.html
index 28d9e57..7863e1a 100644
--- a/target/site/jacoco/musichub.business/AudioElement.java.html
+++ b/target/site/jacoco/musichub.business/AudioElement.java.html
@@ -68,31 +68,31 @@ public abstract class AudioElement {
}
public String toString() {
-<span class="nc" id="L71"> return &quot;Title = &quot; + this.title + &quot;, Artist = &quot; + this.artist + &quot;, Length = &quot; + this.lengthInSeconds + &quot;, Content = &quot; + this.content;</span>
+<span class="fc" id="L71"> return &quot;Title = &quot; + this.title + &quot;, Artist = &quot; + this.artist + &quot;, Length = &quot; + this.lengthInSeconds + &quot;, Content = &quot; + this.content;</span>
}
public void createXMLElement(Document document, Element parentElement) {
-<span class="nc" id="L75"> Element nameElement = document.createElement(&quot;title&quot;);</span>
-<span class="nc" id="L76"> nameElement.appendChild(document.createTextNode(title));</span>
-<span class="nc" id="L77"> parentElement.appendChild(nameElement);</span>
+<span class="fc" id="L75"> Element nameElement = document.createElement(&quot;title&quot;);</span>
+<span class="fc" id="L76"> nameElement.appendChild(document.createTextNode(title));</span>
+<span class="fc" id="L77"> parentElement.appendChild(nameElement);</span>
-<span class="nc" id="L79"> Element artistElement = document.createElement(&quot;artist&quot;);</span>
-<span class="nc" id="L80"> artistElement.appendChild(document.createTextNode(artist));</span>
-<span class="nc" id="L81"> parentElement.appendChild(artistElement);</span>
+<span class="fc" id="L79"> Element artistElement = document.createElement(&quot;artist&quot;);</span>
+<span class="fc" id="L80"> artistElement.appendChild(document.createTextNode(artist));</span>
+<span class="fc" id="L81"> parentElement.appendChild(artistElement);</span>
-<span class="nc" id="L83"> Element lengthElement = document.createElement(&quot;length&quot;);</span>
-<span class="nc" id="L84"> lengthElement.appendChild(document.createTextNode(Integer.valueOf(lengthInSeconds).toString()));</span>
-<span class="nc" id="L85"> parentElement.appendChild(lengthElement);</span>
+<span class="fc" id="L83"> Element lengthElement = document.createElement(&quot;length&quot;);</span>
+<span class="fc" id="L84"> lengthElement.appendChild(document.createTextNode(Integer.valueOf(lengthInSeconds).toString()));</span>
+<span class="fc" id="L85"> parentElement.appendChild(lengthElement);</span>
-<span class="nc" id="L87"> Element UUIDElement = document.createElement(&quot;UUID&quot;);</span>
-<span class="nc" id="L88"> UUIDElement.appendChild(document.createTextNode(uuid.toString()));</span>
-<span class="nc" id="L89"> parentElement.appendChild(UUIDElement);</span>
+<span class="fc" id="L87"> Element UUIDElement = document.createElement(&quot;UUID&quot;);</span>
+<span class="fc" id="L88"> UUIDElement.appendChild(document.createTextNode(uuid.toString()));</span>
+<span class="fc" id="L89"> parentElement.appendChild(UUIDElement);</span>
-<span class="nc" id="L91"> Element contentElement = document.createElement(&quot;content&quot;);</span>
-<span class="nc" id="L92"> contentElement.appendChild(document.createTextNode(content));</span>
-<span class="nc" id="L93"> parentElement.appendChild(contentElement);</span>
+<span class="fc" id="L91"> Element contentElement = document.createElement(&quot;content&quot;);</span>
+<span class="fc" id="L92"> contentElement.appendChild(document.createTextNode(content));</span>
+<span class="fc" id="L93"> parentElement.appendChild(contentElement);</span>
-<span class="nc" id="L95"> }</span>
+<span class="fc" id="L95"> }</span>
public void manageAudioElement() throws UnsupportedAudioFileException, IOException, LineUnavailableException {