Codebasis als Dateien ins Arbeitsrepo statt als Gitlink

QuellCode/CentronERP war nur als Gitlink (Submodul-Referenz auf 79c1142)
getrackt, ohne .gitmodules und ohne erreichbares Remote. Der
Untersuchungsgegenstand der Versuchsreihe war damit nicht reproduzierbar
gesichert: Ein Klon haette ein leeres Verzeichnis erhalten, und die Belege
der 3.287 Anforderungen waeren nicht ueberpruefbar gewesen.

Umstellung:
- Historie nach c:\DEV\CentronERP_git_snapshot_79c1142 ausgelagert
  (vollstaendig lesbar, enthaelt 79c1142 und Vorgaenger 89ccfd6)
- Gitlink aus dem Index entfernt
- Dateiinhalt aufgenommen: 24.557 Dateien, rund 333 MB

Die verschachtelte .gitignore der Codebasis gilt weiter, Build-Artefakte
bleiben ausgeschlossen. Details in Versuche/Versuch_01/_Codebasis-Nachweis.md
This commit is contained in:
Christoph Schwörer
2026-08-26 07:43:51 +02:00
parent 18edae75b6
commit f045b99a25
24664 changed files with 5846716 additions and 1 deletions
@@ -0,0 +1,44 @@
[
{
I3D: '1',
EmployeeI3D: '10',
Year: '2022',
Month: '1',
Goal: '500,0000000'
},
{
I3D: '2',
EmployeeI3D: '10',
Year: '2022',
Month: '2',
Goal: '500,0000000'
},
{
I3D: '3',
EmployeeI3D: '10',
Year: '2022',
Month: '3',
Goal: '500,0000000'
},
{
I3D: '4',
EmployeeI3D: '10',
Year: '2022',
Month: '4',
Goal: '500,0000000'
},
{
I3D: '5',
EmployeeI3D: '10',
Year: '2022',
Month: '5',
Goal: '500,0000000'
},
{
I3D: '6',
EmployeeI3D: '10',
Year: '2022',
Month: '6',
Goal: '1000,0000000'
}
]
@@ -0,0 +1,44 @@
[
{
EmployeeI3D: 10,
Goal: 500.0000000,
I3D: 1,
Month: 1,
Year: 2022
},
{
EmployeeI3D: 10,
Goal: 500.0000000,
I3D: 2,
Month: 2,
Year: 2022
},
{
EmployeeI3D: 10,
Goal: 500.0000000,
I3D: 3,
Month: 3,
Year: 2022
},
{
EmployeeI3D: 10,
Goal: 500.0000000,
I3D: 4,
Month: 4,
Year: 2022
},
{
EmployeeI3D: 10,
Goal: 500.0000000,
I3D: 5,
Month: 5,
Year: 2022
},
{
EmployeeI3D: 10,
Goal: 1000.0000000,
I3D: 6,
Month: 6,
Year: 2022
}
]
@@ -0,0 +1,51 @@
using System.Collections.Generic;
using Centron.BusinessLogic;
using Centron.BusinessLogic.WebServices.Sales.Receipts;
using Centron.Interfaces.Sales.Receipts;
using Centron.Tests.EndToEnd.Infrastructure;
using CentronSoftware.Centron.WebServices.Entities.Sales.Receipts;
using Xunit.Abstractions;
namespace Centron.Tests.EndToEnd.Tests.ReceiptProvisionGoals;
public class ReceiptProvisionGoalTests : EndToEndTest
{
public ReceiptProvisionGoalTests(ITestOutputHelper testOutputHelper)
: base(testOutputHelper)
{
}
private const int EmployeeI3D = 10;
public override void Execute()
{
this.SaveGoals(step: 1);
this.LoadGoals(step: 2);
}
private void SaveGoals(int step)
{
using var session = new BLSession();
var goals = new List<ReceiptProvisionEmployeeGoalDTO>
{
new() { Month = 1, Goal = 500, },
new() { Month = 2, Goal = 500, },
new() { Month = 3, Goal = 500, },
new() { Month = 4, Goal = 500, },
new() { Month = 5, Goal = 500, },
new() { Month = 6, Goal = 1000, },
};
session.GetBL<ReceiptProvisionEmployeeGoalWebServiceBL>().SaveEmployeeGoals(EmployeeI3D, 2022, goals);
this.Verifier.VerifyTable($"{step}_Goals_Table", "ReceiptProvisionEmployeeGoals");
}
private void LoadGoals(int step)
{
using var session = new BLSession();
var goals = session.GetBL<ReceiptProvisionEmployeeGoalWebServiceBL>().GetGoals(new() { EmployeeI3Ds = new List<int> { EmployeeI3D } });
this.Verifier.Verify($"{step}_Goals", goals);
}
}