github.com/cilium/cilium@v1.16.2/pkg/maps/egressmap/egress_test.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  package egressmap
     5  
     6  import (
     7  	"testing"
     8  
     9  	"github.com/cilium/hive/hivetest"
    10  
    11  	"github.com/cilium/cilium/pkg/hive"
    12  )
    13  
    14  func TestCell(t *testing.T) {
    15  	err := hive.New(Cell).Populate(hivetest.Logger(t))
    16  	if err != nil {
    17  		t.Fatal(err)
    18  	}
    19  }