github.com/aergoio/aergo@v1.3.1/p2p/p2pkey/nodekey_test.go (about)

     1  /*
     2   * @file
     3   * @copyright defined in aergo/LICENSE.txt
     4   */
     5  
     6  package p2pkey
     7  
     8  import "testing"
     9  
    10  func TestNodeVersion(t *testing.T) {
    11  	tests := []struct {
    12  		name string
    13  		want string
    14  	}{
    15  		// TODO: Add test cases.
    16  	}
    17  	for _, tt := range tests {
    18  		t.Run(tt.name, func(t *testing.T) {
    19  			if got := NodeVersion(); got != tt.want {
    20  				t.Errorf("NodeVersion() = %v, want %v", got, tt.want)
    21  			}
    22  		})
    23  	}
    24  }