This commit is contained in:
@@ -363,7 +363,7 @@ namespace AyaNova
|
|||||||
// ******************** TESTING WIPE DB *****************************
|
// ******************** TESTING WIPE DB *****************************
|
||||||
//
|
//
|
||||||
//Set this to true to wipe the db and reinstall a trial license and re-seed the data
|
//Set this to true to wipe the db and reinstall a trial license and re-seed the data
|
||||||
var TESTING_REFRESH_DB = true;
|
var TESTING_REFRESH_DB = false;
|
||||||
|
|
||||||
#if (DEBUG)
|
#if (DEBUG)
|
||||||
//TESTING
|
//TESTING
|
||||||
|
|||||||
@@ -238,7 +238,7 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
//////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////
|
||||||
//UTILITIES
|
//UTILITIES
|
||||||
internal static async Task LogEventCreatedModifiedEvents(JObject j, List<ImportAyaNova7MapItem> importMap, AyaType ayaType, AyContext ct)
|
internal static void LogEventCreatedModifiedEvents(JObject j, List<ImportAyaNova7MapItem> importMap, AyaType ayaType, AyContext ct)
|
||||||
{
|
{
|
||||||
var V7Id = new Guid(j["ID"].Value<string>());
|
var V7Id = new Guid(j["ID"].Value<string>());
|
||||||
var RavenId = importMap.Where(m => m.V7ObjectId == V7Id).First().NewObjectAyaTypeId.ObjectId;
|
var RavenId = importMap.Where(m => m.V7ObjectId == V7Id).First().NewObjectAyaTypeId.ObjectId;
|
||||||
|
|||||||
@@ -400,7 +400,7 @@ namespace AyaNova.Biz
|
|||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
var mapItem = new ImportAyaNova7MapItem(OldV7Id, AyaType.Tag, o.Id);
|
var mapItem = new ImportAyaNova7MapItem(OldV7Id, AyaType.Tag, o.Id);
|
||||||
importMap.Add(mapItem);
|
importMap.Add(mapItem);
|
||||||
await ImportAyaNova7Biz.LogEventCreatedModifiedEvents(j, importMap, AyaType.Tag, ct);
|
ImportAyaNova7Biz.LogEventCreatedModifiedEvents(j, importMap, AyaType.Tag, ct);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@@ -759,7 +759,7 @@ namespace AyaNova.Biz
|
|||||||
break;
|
break;
|
||||||
case "eventlog":
|
case "eventlog":
|
||||||
{
|
{
|
||||||
await ImportAyaNova7Biz.LogEventCreatedModifiedEvents(j, importMap, BizType, ct);
|
ImportAyaNova7Biz.LogEventCreatedModifiedEvents(j, importMap, BizType, ct);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "locale":
|
case "locale":
|
||||||
|
|||||||
11
test/raven-integration/burntest.bat
Normal file
11
test/raven-integration/burntest.bat
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
SET /a VAR=0
|
||||||
|
:HOME
|
||||||
|
SET /a VAR=VAR+1
|
||||||
|
|
||||||
|
IF %VAR%==1000 goto :End
|
||||||
|
|
||||||
|
dotnet test
|
||||||
|
|
||||||
|
goto :HOME
|
||||||
|
|
||||||
|
:END
|
||||||
Reference in New Issue
Block a user