github.com/cilium/cilium@v1.16.2/pkg/datapath/linux/config/cell_test.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  package config
     5  
     6  import (
     7  	"testing"
     8  
     9  	"github.com/cilium/hive/hivetest"
    10  	"github.com/stretchr/testify/require"
    11  
    12  	"github.com/cilium/cilium/pkg/hive"
    13  )
    14  
    15  func TestCell(t *testing.T) {
    16  	require.NoError(t, hive.New(Cell).Populate(hivetest.Logger(t)))
    17  }