Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/06/15 12:56:44 (9 years ago)
Author:
ascheibe
Message:

#2308 added missing attributes for unit tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/KruskalWallisUnitTests.cs

    r11705 r11938  
    3030    //tests the sample data from R's Kruskal.Test() help page
    3131    [TestMethod]
     32    [TestCategory("Analysis.Statistics")]
     33    [TestProperty("Time", "short")]
    3234    public void KruskalWallisTest1() {
    3335      double[][] data = new double[3][];
     
    4143    //compares groups of uniformly distributed random variables
    4244    [TestMethod]
     45    [TestCategory("Analysis.Statistics")]
     46    [TestProperty("Time", "short")]
    4347    public void KruskalWallisTest2() {
    4448      double[][] data = new double[3][];
     
    6771    //compares groups of normally distributed random variables
    6872    [TestMethod]
     73    [TestCategory("Analysis.Statistics")]
     74    [TestProperty("Time", "short")]
    6975    public void KruskalWallisTest3() {
    7076      double[][] data = new double[3][];
     
    115121    //compares groups of normally and uniformly distributed random variables
    116122    [TestMethod]
     123    [TestCategory("Analysis.Statistics")]
     124    [TestProperty("Time", "short")]
    117125    public void KruskalWallisTest4() {
    118126      double[][] data = new double[3][];
     
    156164    //compares groups containing the same random variables
    157165    [TestMethod]
     166    [TestCategory("Analysis.Statistics")]
     167    [TestProperty("Time", "short")]
    158168    public void KruskalWallisTest5() {
    159169      double[][] data = new double[4][];
Note: See TracChangeset for help on using the changeset viewer.