Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/09/16 13:49:01 (8 years ago)
Author:
abeham
Message:

#2651:

  • partially reverted builder testsettings
  • added example on how to use native callbacks (depth-first-search and bfs)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.IGraph/IGraphWrappersMatrixTest.cs

    r14245 r14247  
    3030    [TestCategory("igraph")]
    3131    [TestProperty("Time", "short")]
    32     public void IGraphWrappersMatrixConstructionAndFinalization() {
     32    public void IGraphWrappersMatrixConstructionAndFinalizationTest() {
    3333      var matrix = new Matrix(3, 2);
    3434      Assert.AreEqual(3, matrix.Rows);
     
    8686    [TestCategory("igraph")]
    8787    [TestProperty("Time", "short")]
    88     public void IGraphWrappersMatrixFill() {
     88    public void IGraphWrappersMatrixFillTest() {
    8989      var matrix = new Matrix(3, 2);
    9090      matrix.Fill(2.6);
     
    101101    [TestCategory("igraph")]
    102102    [TestProperty("Time", "short")]
    103     public void IGraphWrappersMatrixTranspose() {
     103    public void IGraphWrappersMatrixTransposeTest() {
    104104      var matrix = new Matrix(3, 2);
    105105      matrix.Transpose();
     
    112112    [TestCategory("igraph")]
    113113    [TestProperty("Time", "short")]
    114     public void IGraphWrappersMatrixScale() {
     114    public void IGraphWrappersMatrixScaleTest() {
    115115      var matrix = new Matrix(3, 2);
    116116      matrix[0, 0] = matrix[0, 1] = 4;
Note: See TracChangeset for help on using the changeset viewer.