public XUnitTestDemo3(SomeFixture data) { //this data will be same instance in this XUnitTestDemo3 class this.data = data; Console.WriteLine("This should be run once before every test " + DateTime.Now.Ticks); Assert.Equal(1, 1); }