Test tests both the satellite and node configurations
()
| 65 | |
| 66 | // Test tests both the satellite and node configurations |
| 67 | func (t *Tester) Test() error { |
| 68 | err := t.TestSatelliteConfig() |
| 69 | if err != nil { |
| 70 | return err |
| 71 | } |
| 72 | |
| 73 | err = t.TestNodeConfig() |
| 74 | if err != nil { |
| 75 | return err |
| 76 | } |
| 77 | |
| 78 | return nil |
| 79 | } |