package main

import (
	"fmt"
	"testing"
)

func TestTest(t *testing.T) {
	 fmt.Println("test will now fail")
	 t.Fail()
}
