ToString() 공개 메소드

public ToString ( ) : String
리턴 String
		public void Constructor2 ()
		{
			BadImageFormatException bif = new BadImageFormatException ("message");

#if NET_2_0
			Assert.IsNotNull (bif.Data, "#1");
#endif
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNull (bif.InnerException, "#3");
			Assert.IsNotNull (bif.Message, "#4");
			Assert.AreEqual ("message", bif.Message, "#5");
			Assert.IsNull (bif.FusionLog, "#6");
#if TARGET_JVM // ToString always has a stack trace under TARGET_JVM
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType ().FullName + ": message"), "#7");
#else
			Assert.AreEqual (bif.GetType ().FullName + ": message",
				bif.ToString (), "#7");
#endif // TARGET_JVM
		}
		public void NoRestriction ()
		{
			BadImageFormatException fle = new BadImageFormatException ("message", "filename",
				new BadImageFormatException ("inner message", "inner filename"));

			Assert.AreEqual ("message", fle.Message, "Message");
			Assert.AreEqual ("filename", fle.FileName, "FileName");
			Assert.IsNull (fle.FusionLog, "FusionLog");
			Assert.IsNotNull (fle.ToString (), "ToString");
		}
		public void FullRestriction ()
		{
			BadImageFormatException fle = new BadImageFormatException ("message", "filename",
				new BadImageFormatException ("inner message", "inner filename"));

			Assert.AreEqual ("message", fle.Message, "Message");
			Assert.AreEqual ("filename", fle.FileName, "FileName");
			Assert.IsNull (fle.FusionLog, "FusionLog");
			// ToString doesn't work in this case and strangely throws a BadImageFormatException
			Assert.IsNotNull (fle.ToString (), "ToString");
		}
		public void Constructor1 ()
		{
			BadImageFormatException bif = new BadImageFormatException ();

			Assert.IsNotNull (bif.Data, "#1");
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNull (bif.InnerException, "#3");
			Assert.IsNotNull (bif.Message, "#4"); // Format of the executable (.exe) or library (.dll) is invalid
			Assert.IsNull (bif.FusionLog, "#5");
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType().FullName), "#6");
		}
		public void Constructor2_Message_Empty ()
		{
			BadImageFormatException bif = new BadImageFormatException (string.Empty);

			Assert.IsNotNull (bif.Data, "#1");
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNull (bif.InnerException, "#3");
			Assert.IsNotNull (bif.Message, "#4");
			Assert.AreEqual (string.Empty, bif.Message, "#5");
			Assert.IsNull (bif.FusionLog, "#6");
			Assert.AreEqual (bif.GetType ().FullName + ": ",
				bif.ToString (), "#7");
		}
예제 #6
0
		public void Constructor2 ()
		{
			BadImageFormatException bif = new BadImageFormatException ("message");

#if NET_2_0
			Assert.IsNotNull (bif.Data, "#1");
#endif
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNull (bif.InnerException, "#3");
			Assert.IsNotNull (bif.Message, "#4");
			Assert.AreEqual ("message", bif.Message, "#5");
			Assert.IsNull (bif.FusionLog, "#6");
			Assert.AreEqual (bif.GetType ().FullName + ": message",
				bif.ToString (), "#7");
		}
		public void Constructor3 ()
		{
			ArithmeticException ame = new ArithmeticException ("something");
			BadImageFormatException bif = new BadImageFormatException ("message",
				ame);

			Assert.IsNotNull (bif.Data, "#1");
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNotNull (bif.InnerException, "#3");
			Assert.AreSame (ame, bif.InnerException, "#4");
			Assert.IsNotNull (bif.Message, "#5");
			Assert.AreEqual ("message", bif.Message, "#6");
			Assert.IsNull (bif.FusionLog, "#7");
			Assert.AreEqual (bif.GetType ().FullName + ": message ---> "
				+ ame.GetType ().FullName + ": something", bif.ToString (), "#8");
		}
		public void Constructor2_Message_Null ()
		{
			BadImageFormatException bif = new BadImageFormatException ((string) null);

			Assert.IsNotNull (bif.Data, "#1");
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNull (bif.InnerException, "#3");
			Assert.IsNotNull (bif.Message, "#4"); // Could not load file or assembly '' ...
			Assert.IsTrue (bif.Message.IndexOf ("''") != -1, "#5");
			Assert.IsNull (bif.FusionLog, "#5");
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType ().FullName), "#6");
			Assert.IsTrue (bif.ToString ().IndexOf ("''") != -1, "#7");
		}
		public void Constructor4_Message_Null ()
		{
			BadImageFormatException bif = null;
			
			bif = new BadImageFormatException ((string) null, "file.txt");

			Assert.IsNotNull (bif.Data, "#A1");
			Assert.IsNotNull (bif.FileName, "#A2");
			Assert.AreEqual ("file.txt", bif.FileName, "#A3");
			Assert.IsNull (bif.InnerException, "#A4");
			Assert.IsNotNull (bif.Message, "#A5");
			Assert.IsNull (bif.FusionLog, "#A6");
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType ().FullName
				+ ": "), "#A7");
			Assert.IsTrue (bif.ToString ().IndexOf (Environment.NewLine) != -1, "#A8");
			Assert.IsTrue (bif.ToString ().IndexOf ("'file.txt'") != -1, "#A9");

			bif = new BadImageFormatException ((string) null, string.Empty);

			Assert.IsNotNull (bif.Data, "#B1");
			Assert.IsNotNull (bif.FileName, "#B2");
			Assert.AreEqual (string.Empty, bif.FileName, "#B3");
			Assert.IsNull (bif.InnerException, "#B4");
			// .NET 1.1: The format of the file 'file.txt' is invalid
			// .NET 2.0: Could not load file or assembly 'file.txt' or one of its ...
			Assert.IsNotNull (bif.Message, "#B5");
			Assert.IsNull (bif.FusionLog, "#B6");
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType ().FullName
				+ ": "), "#B7");
			Assert.IsFalse (bif.ToString ().IndexOf (Environment.NewLine) != -1, "#B8");
			Assert.IsTrue (bif.ToString ().IndexOf ("''") != -1, "#B9");
		}
예제 #10
0
		public void Constructor4_Message_Empty ()
		{
			BadImageFormatException bif = null;
			
			bif = new BadImageFormatException (string.Empty, "file.txt");

			Assert.IsNotNull (bif.Data, "#1");
			Assert.IsNotNull (bif.FileName, "#2");
			Assert.AreEqual ("file.txt", bif.FileName, "#3");
			Assert.IsNull (bif.InnerException, "#4");
			Assert.IsNotNull (bif.Message, "#5");
			Assert.AreEqual (string.Empty, bif.Message, "#6");
			Assert.IsNull (bif.FusionLog, "#7");
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType ().FullName
				+ ": " + Environment.NewLine), "#8");
			Assert.IsTrue (bif.ToString ().IndexOf ("'file.txt'") != -1, "#9");
			Assert.IsFalse (bif.ToString ().IndexOf ("\"file.txt\"") != -1, "#10");
		}
예제 #11
0
		public void Constructor4_FileName_Null ()
		{
			BadImageFormatException bif = new BadImageFormatException ("message",
				(string) null);

			Assert.IsNotNull (bif.Data, "#A1");
			Assert.IsNull (bif.FileName, "#A2");
			Assert.IsNull (bif.InnerException, "#A3");
			Assert.IsNotNull (bif.Message, "#A4");
			Assert.AreEqual ("message", bif.Message, "#A5");
			Assert.IsNull (bif.FusionLog, "#A6");
			Assert.AreEqual (bif.GetType ().FullName + ": message",
				bif.ToString (), "#A7");

			bif = new BadImageFormatException (string.Empty, (string) null);

			Assert.IsNotNull (bif.Data, "#B1");
			Assert.IsNull (bif.FileName, "#B2");
			Assert.IsNull (bif.InnerException, "#B3");
			Assert.IsNotNull (bif.Message, "#B4");
			Assert.AreEqual (string.Empty, bif.Message, "#B5");
			Assert.IsNull (bif.FusionLog, "#B6");
			Assert.AreEqual (bif.GetType ().FullName + ": ",
				bif.ToString (), "#B7");
		}
예제 #12
0
		public void Constructor3_Message_Null ()
		{
			ArithmeticException ame = new ArithmeticException ("something");
			BadImageFormatException bif = new BadImageFormatException ((string) null, ame);

			Assert.IsNotNull (bif.Data, "#1");
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNotNull (bif.InnerException, "#3");
			Assert.AreSame (ame, bif.InnerException, "#4");
			Assert.IsNotNull (bif.Message, "#5"); // Could not load file or assembly '' ...
			Assert.IsTrue (bif.Message.IndexOf ("''") != -1, "#6");
			Assert.IsNull (bif.FusionLog, "#7");
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType ().FullName), "#8");
			Assert.IsTrue (bif.ToString ().IndexOf ("---> " + ame.GetType ().FullName) != -1, "#9");
			Assert.IsFalse (bif.ToString ().IndexOf (Environment.NewLine) != -1, "#10");
		}
예제 #13
0
		public void Constructor2_Message_Null ()
		{
			BadImageFormatException bif = new BadImageFormatException ((string) null);

#if NET_2_0
			Assert.IsNotNull (bif.Data, "#1");
#endif
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNull (bif.InnerException, "#3");
#if NET_2_0
			Assert.IsNotNull (bif.Message, "#4"); // Could not load file or assembly '' ...
			Assert.IsTrue (bif.Message.IndexOf ("''") != -1, "#5");
#else
			Assert.IsNotNull (bif.Message, "#4"); // Format of the executable (.exe) or library ...
			Assert.IsFalse (bif.Message.IndexOf ("''") != -1, "#5");
#endif
			Assert.IsNull (bif.FusionLog, "#5");
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType ().FullName), "#6");
#if NET_2_0
			Assert.IsTrue (bif.ToString ().IndexOf ("''") != -1, "#7");
#else
			Assert.IsFalse (bif.ToString ().IndexOf ("''") != -1, "#7");
#endif
		}
		public void Constructor4_FileNameAndMessage_Null ()
		{
			BadImageFormatException bif = new BadImageFormatException ((string) null,
				(string) null);

#if NET_2_0
			Assert.IsNotNull (bif.Data, "#1");
#endif
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNull (bif.InnerException, "#3");
#if NET_2_0
			Assert.IsNotNull (bif.Message, "#4"); // Could not load file or assembly '' ...
			Assert.IsTrue (bif.Message.IndexOf ("''") != -1, "#5");
#else
			Assert.IsNotNull (bif.Message, "#4"); // Format of the executable (.exe) or library ...
			Assert.IsFalse (bif.Message.IndexOf ("''") != -1, "#5");
#endif
			Assert.IsNull (bif.FusionLog, "#5");
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType ().FullName
				+ ": "), "#6");
#if !TARGET_JVM // ToString always has a stack trace under TARGET_JVM
			Assert.IsFalse (bif.ToString ().IndexOf (Environment.NewLine) != -1, "#7");
#endif // TARGET_JVM
		}
		public void Constructor4_FileName_Null ()
		{
			BadImageFormatException bif = new BadImageFormatException ("message",
				(string) null);

#if NET_2_0
			Assert.IsNotNull (bif.Data, "#A1");
#endif
			Assert.IsNull (bif.FileName, "#A2");
			Assert.IsNull (bif.InnerException, "#A3");
			Assert.IsNotNull (bif.Message, "#A4");
			Assert.AreEqual ("message", bif.Message, "#A5");
			Assert.IsNull (bif.FusionLog, "#A6");
#if TARGET_JVM // ToString always has a stack trace under TARGET_JVM
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType().FullName + ": message"), "#A7");
#else
			Assert.AreEqual (bif.GetType ().FullName + ": message",
				bif.ToString (), "#A7");
#endif // TARGET_JVM

			bif = new BadImageFormatException (string.Empty, (string) null);

#if NET_2_0
			Assert.IsNotNull (bif.Data, "#B1");
#endif
			Assert.IsNull (bif.FileName, "#B2");
			Assert.IsNull (bif.InnerException, "#B3");
			Assert.IsNotNull (bif.Message, "#B4");
			Assert.AreEqual (string.Empty, bif.Message, "#B5");
			Assert.IsNull (bif.FusionLog, "#B6");
#if TARGET_JVM // ToString always has a stack trace under TARGET_JVM
			Assert.IsTrue (bif.ToString ().StartsWith (bif.GetType().FullName + ": "), "#B7");
#else
			Assert.AreEqual (bif.GetType ().FullName + ": ",
				bif.ToString (), "#B7");
#endif // TARGET_JVM
		}
		public void Constructor3_Message_Empty ()
		{
			ArithmeticException ame = new ArithmeticException ("something");
			BadImageFormatException bif = new BadImageFormatException (string.Empty, ame);

#if NET_2_0
			Assert.IsNotNull (bif.Data, "#1");
#endif
			Assert.IsNull (bif.FileName, "#2");
			Assert.IsNotNull (bif.InnerException, "#3");
			Assert.AreSame (ame, bif.InnerException, "#4");
			Assert.IsNotNull (bif.Message, "#5");
			Assert.AreEqual (string.Empty, bif.Message, "#6");
			Assert.IsNull (bif.FusionLog, "#7");
#if TARGET_JVM // ToString always has a stack trace under TARGET_JVM
			Assert.IsTrue (bif.ToString ().IndexOf (ame.GetType ().FullName + ": something") != -1, "#8");
#else
			Assert.AreEqual (bif.GetType ().FullName + ":  ---> "
				+ ame.GetType ().FullName + ": something", bif.ToString (), "#8");
#endif // TARGET_JVM
		}