2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Drawing / Test / System.Drawing / TestStringFormat.cs
index 68e0b542d38258ffd416963654b2554913c3d37e..d5592db239b43e8c2368980bfd48bdd888ca9c98 100644 (file)
@@ -7,6 +7,29 @@
 //
 // (C) 2004 Ximian, Inc.  http://www.ximian.com
 //
+
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
 using System;
 using System.Drawing;
 using System.Drawing.Imaging;
@@ -15,7 +38,7 @@ using NUnit.Framework;
 namespace MonoTests.System.Drawing{
 
        [TestFixture]   
-       public class BitMapTest : Assertion {
+       public class StringFormatTest {
                
                [TearDown]
                public void Clean() {}
@@ -30,8 +53,21 @@ namespace MonoTests.System.Drawing{
                public void TestSpecialConstructors() 
                {                               
                        StringFormat smf = StringFormat.GenericDefault;                 
-                       smf = StringFormat.GenericTypographic;                                          
+                       smf = StringFormat.GenericTypographic;                                                                                  
                }       
+               
+               [Test]
+               public void TestClone() 
+               {                                               
+                       StringFormat smf = new StringFormat();                                          
+                       StringFormat smfclone = (StringFormat) smf.Clone();                     
+                       
+                       Assert.AreEqual (smf.LineAlignment, smfclone.LineAlignment);                    
+                       Assert.AreEqual (smf.FormatFlags, smfclone.FormatFlags);                        
+                       Assert.AreEqual (smf.LineAlignment, smfclone.LineAlignment);                    
+                       Assert.AreEqual (smf.Alignment, smfclone.Alignment);                    
+                       Assert.AreEqual (smf.Trimming, smfclone.Trimming);                      
+               }
                        
                [Test]
                public void TestAlignment() 
@@ -39,10 +75,10 @@ namespace MonoTests.System.Drawing{
                        StringFormat    smf = new StringFormat ();
                        
                        smf.LineAlignment = StringAlignment.Center;                                                                     
-                       AssertEquals (StringAlignment.Center, smf.LineAlignment);                       
+                       Assert.AreEqual (StringAlignment.Center, smf.LineAlignment);                    
                        
                        smf.Alignment = StringAlignment.Far;                                                                    
-                       AssertEquals (StringAlignment.Far, smf.Alignment);                                               
+                       Assert.AreEqual (StringAlignment.Far, smf.Alignment);                                            
                }               
                        
                [Test]
@@ -51,8 +87,28 @@ namespace MonoTests.System.Drawing{
                        StringFormat    smf = new StringFormat ();
                        
                        smf.FormatFlags = StringFormatFlags.DisplayFormatControl;                                                                       
-                       AssertEquals (StringFormatFlags.DisplayFormatControl, smf.FormatFlags);                                          
+                       Assert.AreEqual (StringFormatFlags.DisplayFormatControl, smf.FormatFlags);                                               
                }               
                
+               [Test]
+               public void TabsStops() 
+               {                               
+                       StringFormat    smf = new StringFormat ();
+                       
+                       float firstTabOffset;                   
+                       float[] tabsSrc = {100, 200, 300, 400};
+                       float[] tabStops;
+                       
+                       smf.SetTabStops(200, tabsSrc);
+                       tabStops = smf.GetTabStops(out firstTabOffset);
+                       
+                       Assert.AreEqual (200, firstTabOffset);                                           
+                       Assert.AreEqual (tabsSrc.Length, tabStops.Length);                                               
+                       Assert.AreEqual (tabsSrc[0], tabStops[0]);                                      
+                       Assert.AreEqual (tabsSrc[1], tabStops[1]);                                      
+                       Assert.AreEqual (tabsSrc[2], tabStops[2]);                                      
+                       Assert.AreEqual (tabsSrc[3], tabStops[3]);                                      
+               }       
+               
        }
 }