Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Commits
45aef13a
Commit
45aef13a
authored
3 years ago
by
Benedikt Wetzel
Browse files
Options
Downloads
Patches
Plain Diff
delete incorrect test
parent
ec34088f
No related branches found
No related tags found
1 merge request
!171
Introduce ResourceSets to make loading of resource files more flexible
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theodolite/src/test/kotlin/theodolite/execution/operator/testTest.kt
+0
-37
0 additions, 37 deletions
...src/test/kotlin/theodolite/execution/operator/testTest.kt
with
0 additions
and
37 deletions
theodolite/src/test/kotlin/theodolite/execution/operator/testTest.kt
deleted
100644 → 0
+
0
−
37
View file @
ec34088f
package
theodolite.execution.operator
import
io.fabric8.kubernetes.client.DefaultKubernetesClient
import
io.quarkus.test.junit.QuarkusTest
import
mu.KotlinLogging
import
org.junit.jupiter.api.Test
private
val
logger
=
KotlinLogging
.
logger
{}
@QuarkusTest
class
test
Test
{
@Test
fun
test
(){
val
operator
=
TheodoliteOperator
()
val
client
=
DefaultKubernetesClient
().
inNamespace
(
"default"
)
val
benchmarkClient
=
operator
.
getBenchmarkClient
(
client
=
client
)
val
benchmarks
=
benchmarkClient
.
list
()
.
items
val
r
=
benchmarks
.
map
{
it
.
spec
.
loadKubernetesResources
(
it
.
spec
.
loadGenResourceSets
)
}
r
.
forEach
{
it
?.
forEach
{
logger
.
info
{
it
}
}
}
}
}
\ 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