...

Source file src/edge-infra.dev/pkg/edge/lighthouse/config/config_test.go

Documentation: edge-infra.dev/pkg/edge/lighthouse/config

     1  package config
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestNewSysCfg(t *testing.T) {
    10  	syscfg := New()
    11  	assert.NotNil(t, syscfg)
    12  }
    13  

View as plain text