Skip to content

Commit cbf9d85

Browse files
authored
Add files via upload
1 parent c2d2645 commit cbf9d85

File tree

14 files changed

+101
-1
lines changed

14 files changed

+101
-1
lines changed

ProjetoFinal.iml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,35 @@
44
<exclude-output />
55
<content url="file://$MODULE_DIR$">
66
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7+
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
78
</content>
89
<orderEntry type="inheritedJdk" />
910
<orderEntry type="sourceFolder" forTests="false" />
11+
<orderEntry type="module-library" scope="TEST">
12+
<library name="JUnit4">
13+
<CLASSES>
14+
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.13.1/junit-4.13.1.jar!/" />
15+
<root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar!/" />
16+
</CLASSES>
17+
<JAVADOC />
18+
<SOURCES />
19+
</library>
20+
</orderEntry>
21+
<orderEntry type="module-library" scope="TEST">
22+
<library name="JUnit5.8.1">
23+
<CLASSES>
24+
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter/5.8.1/junit-jupiter-5.8.1.jar!/" />
25+
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-api/5.8.1/junit-jupiter-api-5.8.1.jar!/" />
26+
<root url="jar://$MAVEN_REPOSITORY$/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar!/" />
27+
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-commons/1.8.1/junit-platform-commons-1.8.1.jar!/" />
28+
<root url="jar://$MAVEN_REPOSITORY$/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar!/" />
29+
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-params/5.8.1/junit-jupiter-params-5.8.1.jar!/" />
30+
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-engine/5.8.1/junit-jupiter-engine-5.8.1.jar!/" />
31+
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-engine/1.8.1/junit-platform-engine-1.8.1.jar!/" />
32+
</CLASSES>
33+
<JAVADOC />
34+
<SOURCES />
35+
</library>
36+
</orderEntry>
1037
</component>
1138
</module>
278 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-85 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
102 Bytes
Binary file not shown.
1.23 KB
Binary file not shown.
1007 Bytes
Binary file not shown.
98 Bytes
Binary file not shown.

src/Conteudo.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,12 @@ public void removeCategoria(int i){
2121
public int getSize(){
2222
return this.categoria.size();
2323
}
24+
25+
public boolean isArrayList (){
26+
if (categoria.getClass().getSimpleName().equals("ArrayList")){
27+
return true;
28+
}else {
29+
return false;
30+
}
31+
}
2432
}

0 commit comments

Comments
 (0)