mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
17 lines
348 B
Go
17 lines
348 B
Go
// Copyright 2017 Team 254. All Rights Reserved.
|
|
// Author: pat@patfairbank.com (Patrick Fairbank)
|
|
//
|
|
// Helper methods for use in tests in this package and others.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/Team254/cheesy-arena/field"
|
|
"testing"
|
|
)
|
|
|
|
func setupTestWeb(t *testing.T) *Web {
|
|
arena := field.SetupTestArena(t, "web")
|
|
return NewWeb(arena)
|
|
}
|