-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into base64
- Loading branch information
Showing
22 changed files
with
1,781 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,8 @@ public class StringBean { | |
|
||
@Size(min = 1, max = 3) | ||
public Map<String,String> l; | ||
|
||
public String m; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
core/src/main/kotlin/org/evomaster/core/problem/externalservice/DnsAction.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package org.evomaster.core.problem.externalservice | ||
|
||
import org.evomaster.core.search.EnvironmentAction | ||
import org.evomaster.core.search.StructuralElement | ||
import org.evomaster.core.search.gene.Gene | ||
|
||
|
||
//TODO | ||
class DnsAction(children: List<StructuralElement>) : EnvironmentAction(children) { | ||
override fun getName(): String { | ||
TODO("Not yet implemented") | ||
} | ||
|
||
override fun seeTopGenes(): List<out Gene> { | ||
TODO("Not yet implemented") | ||
} | ||
|
||
override fun copyContent(): StructuralElement { | ||
TODO("Not yet implemented") | ||
} | ||
} |
Oops, something went wrong.