Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6028 for branches/histogram


Ignore:
Timestamp:
04/19/11 13:05:58 (13 years ago)
Author:
abeham
Message:

#1487

  • Changed unit test slightly as the other failed on my machine
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram/HeuristicLab.Persistence/3.3/Tests/UseCases.cs

    r6027 r6028  
    11981198      public OneWayTest() { this.value = "default"; }
    11991199      public string value;
    1200       [Storable(AllowOneWay=true)]
     1200      [Storable(AllowOneWay = true)]
    12011201      public string ReadOnly {
    12021202        get { return "ReadOnly"; }
    12031203      }
    1204       [Storable(AllowOneWay=true)]
     1204      [Storable(AllowOneWay = true)]
    12051205      public string WriteOnly {
    12061206        set { this.value = value; }
     
    12581258    public void FontTest() {
    12591259      List<Font> fonts = new List<Font>() {
    1260         new Font(FontFamily.Families.First(), 12),
     1260        new Font(FontFamily.GenericSansSerif, 12),
    12611261        new Font("Times New Roman", 21, FontStyle.Bold, GraphicsUnit.Pixel),
    12621262        new Font("Courier New", 10, FontStyle.Underline, GraphicsUnit.Document),
Note: See TracChangeset for help on using the changeset viewer.