public static void ClassInit(TestContext context) { CloudStorageEmulatorShepherd shepherd = new CloudStorageEmulatorShepherd(); shepherd.Start(); StorageAccount = CloudStorageAccount.DevelopmentStorageAccount; TableClient = StorageAccount.CreateCloudTableClient(); }
public static void ClassInit(TestContext context) { CloudStorageEmulatorShepherd shepherd = new CloudStorageEmulatorShepherd(); shepherd.Start(); StorageAccount = CloudStorageAccount.Parse(DevelopmentStorageAccountConnectionString); TableClient = StorageAccount.CreateCloudTableClient(); CloudTable testTable = SessionRepository.GetTableForSessionData(TableClient, SessionId); testTable.DeleteIfExists(); }
public static void ClassInit(TestContext context) { CloudStorageEmulatorShepherd shepherd = new CloudStorageEmulatorShepherd(); shepherd.Start(); StorageAccount = CloudStorageAccount.DevelopmentStorageAccount; TableClient = StorageAccount.CreateCloudTableClient(); CommandTable = CommandQueue.GetCommandQueueTableForSession(TableClient, SessionGuid); CommandTable.DeleteIfExists(); CommandTable.CreateIfNotExists(); }
public static void ClassInit(TestContext context) { CloudStorageEmulatorShepherd shepherd = new CloudStorageEmulatorShepherd(); shepherd.Start(); StorageAccount = CloudStorageAccount.Parse(DevelopmentStorageAccountConnectionString); TableClient = StorageAccount.CreateCloudTableClient(); SessionTable = TableClient.GetTableReference("Sessions"); SessionPlayerTable = TableClient.GetTableReference("SessionPlayers"); SessionTable.DeleteIfExists(); SessionPlayerTable.DeleteIfExists(); }