Skip to content
Snippets Groups Projects
Select Git revision
  • 52352adfe1f99d63659f260e8469febb1d213d41
  • without_tipselection default
  • develop protected
  • fix/grafana-local-dashboard
  • wasp
  • fix/dashboard-explorer-freeze
  • master
  • feat/timerqueue
  • test/sync_debug_and_650
  • feat/sync_revamp_inv
  • wip/sync
  • tool/db-recovery
  • portcheck/fix
  • fix/synchronization
  • feat/new-dashboard-analysis
  • feat/refactored-analysis-dashboard
  • feat/new-analysis-dashboard
  • test/demo-prometheus-fpc
  • prometheus_metrics
  • wip/analysis-server
  • merge/fpc-test-value-transfer
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
28 results

main.go

Blame
  • main_test.go 764 B
    // Package tests provides the possibility to write integration tests in regular Go style.
    // The integration test framework is initialized before any test in the package runs and
    // thus can readily be used to make requests to peers and read their logs.
    //
    // Each tested feature should reside in its own test file and define tests cases as necessary.
    package tests
    
    import (
    	"os"
    	"testing"
    
    	"github.com/iotaledger/goshimmer/tools/integration-tests/tester/framework"
    )
    
    var f *framework.Framework
    
    // TestMain gets called by the test utility and is executed before any other test in this package.
    // It is therefore used to initialize the integration testing framework.
    func TestMain(m *testing.M) {
    	f = framework.New()
    
    	// call the tests
    	os.Exit(m.Run())
    }