Last active
August 29, 2015 14:16
-
-
Save gasparnagy/8e9b6a80d79cd8bd26f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[BeforeScenario] | |
public void BeforeScenario() | |
{ | |
var tablesToClean = new[] {"OrderItems", "Orders", "Audit"}; | |
using (var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["DB"].ConnectionString)) | |
{ | |
foreach (var table in tablesToClean) | |
{ | |
connection.Open(); | |
using (var cmd = new SqlCommand("TRUNCATE TABLE " + table, connection)) | |
{ | |
cmd.ExecuteNonQuery(); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment