Commit c0f494d470cff983ffd23e6ec43e1b20fe24487f
1 parent
06667d78
Exists in
master
and in
1 other branch
marcação
git-svn-id: https://svn.bento.ifrs.edu.br/default/ASES/ASES%20-%20Web/ASES%20-%20Web/Fontes/avaliador-api@10436 c2178572-b5ca-4887-91d2-9e3a90c7d55b
Showing
1 changed file
with
5 additions
and
3 deletions
Show diff stats
src/test/java/br/com/checker/emag/MarkEvaluationTest.java
... | ... | @@ -170,8 +170,10 @@ public class MarkEvaluationTest { |
170 | 170 | @Test |
171 | 171 | public void shouldCheckCriterio2Recommedation3() { |
172 | 172 | StringBuilder html = new StringBuilder("<html>\n") |
173 | - .append("<h6>Title1</h6>\n") | |
174 | - .append("<h5>Title1.2</h5>\n") | |
173 | + .append("<h1>Title1</h1>\n") | |
174 | + .append("<h3>Title1.2</h3>\n") | |
175 | + .append("<h4>Title1.3</h4>\n") | |
176 | + .append("<h1>Title1.3</h1>\n") | |
175 | 177 | .append("<h4>Title1.3</h4>\n") |
176 | 178 | .append("</html>"); |
177 | 179 | |
... | ... | @@ -187,7 +189,7 @@ public class MarkEvaluationTest { |
187 | 189 | } |
188 | 190 | } |
189 | 191 | |
190 | - assertEquals("Should return 3 occurrence with criteitio 2",3,criterio2); | |
192 | + assertEquals("Should return 2 occurrence with criteitio 2",2,criterio2); | |
191 | 193 | } |
192 | 194 | |
193 | 195 | @Test | ... | ... |