public void Setup() { //arrange factory = new AuthZFactory(); adminAuthZ = new bool[2] { true, true }; displayName = "ExampleName"; attributes = factory.CreateUserAuthZ(displayName, adminAuthZ); }
public void Setup() { //arrange factory = new AuthZFactory(); adminAuthZ = new bool[2] { false, true }; householdID = 1234; displayName = "ExampleName"; attributes = factory.CreateHostAuthZ(displayName, householdID, adminAuthZ); }
public void Setup() { //arrange factory = new AuthZFactory(); attributes = factory.CreateAnonAuthZ(); }
public void Setup() { invoker = new AuthZInvoker(); factory = new AuthZFactory(); }