Klassifizierungssystem hinzugefügt

This commit is contained in:
2023-09-13 12:56:39 +02:00
parent 49ab3598d7
commit bfa77de720
42 changed files with 886 additions and 112 deletions

View File

@@ -0,0 +1,21 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using dcnsanplanung.bewertung;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace dcnsanplanung.bewertung.Tests
{
[TestClass()]
public class BewM149Tests
{
[TestMethod()]
public void BewM149Test()
{
var t = BewM149.Klassifiziere("BAB", "B", "A", "10", "10", 0);
}
}
}