Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/13 14:06:27 (11 years ago)
Author:
mkommend
Message:

#2088: Adapted HL-3.3.Tests, Algorithms.DataAnalysis.Tests, and Collections.Test.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Algorithms.DataAnalysis-3.4/GaussianProcessFunctionsTest.cs

    r9764 r9783  
    3030  public class GaussianProcessFunctionsTest {
    3131    [TestMethod]
     32    [TestCategory("Algorithms.DataAnalysis")]
     33    [TestProperty("Time", "short")]
    3234    public void MeanConstTest() {
    3335      TestMeanFunction(new MeanConst(), 0,
     
    4244
    4345    [TestMethod]
     46    [TestCategory("Algorithms.DataAnalysis")]
     47    [TestProperty("Time", "short")]
    4448    public void MeanZeroTest() {
    4549      TestMeanFunction(new MeanZero(), 0,
     
    5458
    5559    [TestMethod]
     60    [TestCategory("Algorithms.DataAnalysis")]
     61    [TestProperty("Time", "short")]
    5662    public void MeanSumTest() {
    5763      var sum = new MeanSum();
     
    7985    }
    8086    [TestMethod]
     87    [TestCategory("Algorithms.DataAnalysis")]
     88    [TestProperty("Time", "short")]
    8189    public void MeanProdTest() {
    8290      var prod = new MeanProduct();
     
    150158
    151159    [TestMethod]
     160    [TestCategory("Algorithms.DataAnalysis")]
     161    [TestProperty("Time", "short")]
    152162    public void MeanLinear() {
    153163      TestMeanFunction(new MeanLinear(), 0,
     
    176186
    177187    [TestMethod]
     188    [TestCategory("Algorithms.DataAnalysis")]
     189    [TestProperty("Time", "short")]
    178190    public void CovSeIsoTest() {
    179191      TestCovarianceFunction(new CovarianceSquaredExponentialIso(), 0,
     
    264276
    265277    [TestMethod]
     278    [TestCategory("Algorithms.DataAnalysis")]
     279    [TestProperty("Time", "short")]
    266280    public void CovNnTest() {
    267281      TestCovarianceFunction(new CovarianceNeuralNetwork(), 0,
     
    353367
    354368    [TestMethod]
     369    [TestCategory("Algorithms.DataAnalysis")]
     370    [TestProperty("Time", "short")]
    355371    public void CovRQIsoTest() {
    356372      TestCovarianceFunction(new CovarianceRationalQuadraticIso(), 0,
     
    466482
    467483    [TestMethod]
     484    [TestCategory("Algorithms.DataAnalysis")]
     485    [TestProperty("Time", "short")]
    468486    public void CovRQArdTest() {
    469487      TestCovarianceFunction(new CovarianceRationalQuadraticArd(), 0,
     
    690708
    691709    [TestMethod]
     710    [TestCategory("Algorithms.DataAnalysis")]
     711    [TestProperty("Time", "short")]
    692712    public void CovMaternIsoTest() {
    693713      var cov = new CovarianceMaternIso();
     
    875895
    876896    [TestMethod]
     897    [TestCategory("Algorithms.DataAnalysis")]
     898    [TestProperty("Time", "short")]
    877899    public void CovLinearTest() {
    878900      TestCovarianceFunction(new CovarianceLinear(), 0,
     
    897919
    898920    [TestMethod]
     921    [TestCategory("Algorithms.DataAnalysis")]
     922    [TestProperty("Time", "short")]
    899923    public void CovLinearArdTest() {
    900924      TestCovarianceFunction(new CovarianceLinearArd(), 0,
     
    10691093
    10701094    [TestMethod]
     1095    [TestCategory("Algorithms.DataAnalysis")]
     1096    [TestProperty("Time", "short")]
    10711097    public void CovPeriodicTest() {
    10721098      TestCovarianceFunction(new CovariancePeriodic(), 0,
     
    11871213
    11881214    [TestMethod]
     1215    [TestCategory("Algorithms.DataAnalysis")]
     1216    [TestProperty("Time", "short")]
    11891217    public void CovSEardTest() {
    11901218      TestCovarianceFunction(new CovarianceSquaredExponentialArd(), 0,
     
    13841412
    13851413    [TestMethod]
     1414    [TestCategory("Algorithms.DataAnalysis")]
     1415    [TestProperty("Time", "short")]
    13861416    public void CovSumTest() {
    13871417      var cov = new CovarianceSum();
     
    14821512
    14831513    [TestMethod]
     1514    [TestCategory("Algorithms.DataAnalysis")]
     1515    [TestProperty("Time", "short")]
    14841516    public void CovScaleTest() {
    14851517      var cov = new CovarianceScale();
     
    16041636
    16051637    [TestMethod]
     1638    [TestCategory("Algorithms.DataAnalysis")]
     1639    [TestProperty("Time", "short")]
    16061640    public void CovProdTest() {
    16071641      var cov = new CovarianceProduct();
Note: See TracChangeset for help on using the changeset viewer.