Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HaRakka
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rlokilja
HaRakka
Commits
d3823ecf
Commit
d3823ecf
authored
2 weeks ago
by
Kiljala Renne Lauri Olavi
Browse files
Options
Downloads
Patches
Plain Diff
lisätty tehtävät luokalle aliohjelma joka palauttaa indeksin mukaisen tehtävän tietorakenteesta
parent
5706870e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/fxHarakka/luokat/Tehtava.java
+8
-3
8 additions, 3 deletions
src/fxHarakka/luokat/Tehtava.java
src/fxHarakka/luokat/Tehtavat.java
+25
-5
25 additions, 5 deletions
src/fxHarakka/luokat/Tehtavat.java
src/fxHarakka/luokat/test/TehtavaTest.java
+6
-6
6 additions, 6 deletions
src/fxHarakka/luokat/test/TehtavaTest.java
with
39 additions
and
14 deletions
src/fxHarakka/luokat/Tehtava.java
+
8
−
3
View file @
d3823ecf
...
...
@@ -65,6 +65,14 @@ public class Tehtava {
public
void
setNimi
(
String
nimi
){
this
.
nimi
=
nimi
;
}
/**
*
* @return tehtävän nimi
*/
public
String
getNimi
(){
return
this
.
nimi
;
}
/**
...
...
@@ -124,9 +132,6 @@ public class Tehtava {
this
.
lisatieto
=
lisatieto
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/fxHarakka/luokat/Tehtavat.java
+
25
−
5
View file @
d3823ecf
package
fxHarakka.luokat
;
import
java.util.ArrayList
;
import
java.util.Iterator
;
import
java.util.Optional
;
/**
* --------------------Tehtavat == (monikko) tehtävien luokka----------------
...
...
@@ -21,13 +23,10 @@ public class Tehtavat {
//-----------------------MUODOSTAJAT-TEHTAVAT----------------------------
public
Tehtavat
(
int
maara
,
int
maxMaara
)
{
this
.
maara
=
maara
;
}
//ei tarvitse erikseen muodostajia
public
Tehtavat
()
{
this
.
maara
=
0
;
}
...
...
@@ -43,6 +42,27 @@ public class Tehtavat {
}
/**
* lisää tehtävän tietorakenteeseen
* @param tehtava lisättävä tehtävä
*/
public
void
lisaaTehtava
(
Tehtava
tehtava
)
{
alkiot
.
add
(
tehtava
);
}
/**
* @return Tehtävä
* @param i Tehtävän indeksi tietorakenteessa joka halutaan
*/
public
Tehtava
anna
(
int
i
)
{
return
alkiot
.
get
(
i
);
}
...
...
This diff is collapsed.
Click to expand it.
src/fxHarakka/luokat/test/TehtavaTest.java
+
6
−
6
View file @
d3823ecf
...
...
@@ -8,7 +8,7 @@ import fxHarakka.luokat.*;
/**
* Test class made by ComTest
* @version 2025.03.19 20:
02:29
// Generated by ComTest
* @version 2025.03.19 20:
43:31
// Generated by ComTest
*
*/
@SuppressWarnings
({
"PMD"
})
...
...
@@ -17,15 +17,15 @@ public class TehtavaTest {
// Generated by ComTest BEGIN
/** testSetLisatieto1
05
*/
/** testSetLisatieto1
13
*/
@Test
public
void
testSetLisatieto1
05
()
{
// Tehtava: 1
05
public
void
testSetLisatieto1
13
()
{
// Tehtava: 1
13
Tehtava
teht1
=
new
Tehtava
();
teht1
.
setLisatieto
(
"testi"
,
false
);
assertEquals
(
"From: Tehtava line: 1
09
"
,
"testi"
,
teht1
.
getLisatieto
());
assertEquals
(
"From: Tehtava line: 1
17
"
,
"testi"
,
teht1
.
getLisatieto
());
teht1
.
setLisatieto
(
"testi2"
,
false
);
assertEquals
(
"From: Tehtava line: 11
1
"
,
"testi2"
,
teht1
.
getLisatieto
());
assertEquals
(
"From: Tehtava line: 11
9
"
,
"testi2"
,
teht1
.
getLisatieto
());
teht1
.
setLisatieto
(
"testi3"
,
true
);
assertEquals
(
"From: Tehtava line: 11
3
"
,
"testi2testi3"
,
teht1
.
getLisatieto
());
assertEquals
(
"From: Tehtava line: 1
2
1"
,
"testi2testi3"
,
teht1
.
getLisatieto
());
}
// Generated by ComTest END
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment