()
| 542 | } |
| 543 | |
| 544 | func ExampleInstance_PrintVersionList_normal() { |
| 545 | instance := Instance{ |
| 546 | DeprecatedVersions: []Version{testVersionDeployment}, |
| 547 | } |
| 548 | _ = instance.PrintVersionList("normal") |
| 549 | |
| 550 | // Output: |
| 551 | // KIND-------- NAME---------------- DEPRECATED IN-- REMOVED IN-- REPLACEMENT-- REPL AVAIL IN-- COMPONENT-- |
| 552 | // Deployment-- extensions/v1beta1-- v1.9.0--------- v1.16.0----- apps/v1------ v1.10.0-------- k8s-------- |
| 553 | } |
| 554 | |
| 555 | func ExampleInstance_PrintVersionList_wide() { |
| 556 | instance := Instance{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…