Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/SqLiteDatabaseHelper.cs
===================================================================
diff -u -r05013c44d1273bac219a442dc7959706c6bac715 -r065af7e201b59ec19a17c42e9d772f5e86b31338
--- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/SqLiteDatabaseHelper.cs (.../SqLiteDatabaseHelper.cs) (revision 05013c44d1273bac219a442dc7959706c6bac715)
+++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/SqLiteDatabaseHelper.cs (.../SqLiteDatabaseHelper.cs) (revision 065af7e201b59ec19a17c42e9d772f5e86b31338)
@@ -36,7 +36,8 @@
/// Creates a corrupt database file based on .
///
/// The database file path.
- /// When is null or whitespace.
+ /// Thrown when
+ /// is null or whitespace.
public static void CreateCorruptDatabaseFile(string databaseFilePath)
{
CreateDatabaseFile(databaseFilePath, GetCorruptSchema());
@@ -47,7 +48,8 @@
/// Creates the complete database file with a VersionEntity row but no project data.
///
/// The database file path.
- /// When is null or whitespace.
+ /// Thrown when
+ /// is null or whitespace.
public static void CreateCompleteDatabaseFileWithoutProjectData(string databaseFilePath)
{
CreateCompleteDatabaseFileEmpty(databaseFilePath);
@@ -68,7 +70,8 @@
///
/// The database file path.
/// The database version.
- /// When is null or whitespace.
+ /// Thrown when
+ /// is null or whitespace.
public static void AddVersionEntity(string databaseFilePath, int databaseVersion)
{
string addVersionRowCommand = GetAddVersionRowCommandText(databaseVersion);
@@ -81,8 +84,8 @@
/// Path to database file.
/// Script that contains the schema to execute on the database.
/// Thrown when executing failed.
- /// When
- /// or is null or whitespace.
+ /// Thrown when
+ /// or is null or whitespace.
public static void CreateDatabaseFile(string databaseFilePath, string databaseSchemaQuery)
{
if (string.IsNullOrWhiteSpace(databaseSchemaQuery))
@@ -142,7 +145,7 @@
///
/// The file path to the database.
/// The command text/query.
- /// When is null or whitespace.
+ /// Thrown when is null or whitespace.
private static void PerformCommandOnDatabase(string databaseFilePath, string commandText)
{
var connectionString = SqLiteConnectionStringBuilder.BuildSqLiteConnectionString(databaseFilePath);