Index: trunk/TestCase/SimpleTestCase/SPrintFTest.ab
===================================================================
--- trunk/TestCase/SimpleTestCase/SPrintFTest.ab	(revision 358)
+++ trunk/TestCase/SimpleTestCase/SPrintFTest.ab	(revision 364)
@@ -15,8 +15,6 @@
 	s = FloatToChars(1., e, sign)
 	UnitTest("FloatToChars(1)", s = "10000000000000000" And e = 0 And sign = False)
-
 	s = FloatToChars(-93.75e-3, e, sign)
 	UnitTest("FloatToChars(-93.75e-3)", s = "93750000000000000" And e = 1 - 3 And sign = True)
-
 	s = FloatToChars(.0, e, sign)
 	UnitTest("FloatToChars(0)", s = "00000000000000000" And e = 0 And sign = False)
@@ -24,5 +22,4 @@
 	s = FormatFloatE(9.876543e021, 6, 0, None)
 	UnitTest("FormatFloatE(9876543e+21)", s = "9.876543e+21")
-
 	s = FormatFloatE(7.81250000E-03, 8, 0, Cap)
 	UnitTest("FormatFloatE(7.81250000E-03)", s = "7.81250000E-03")
@@ -49,5 +46,4 @@
 	s = FormatFloatE(1.2345e+67, 4, 0, Cap)
 	UnitTest("FormatFloatE(1.2345E+67, Cap)", s = "1.2345E+67")
-
 	s = FormatFloatE(1.2345e67, 3, 0, None)
 	UnitTest("FormatFloatE(1.2345e+67, precision = 3)", s = "1.234e+67")
@@ -56,5 +52,4 @@
 	s = FormatIntegerU(777, 0, 0, None)
 	UnitTest("FormatIntegerU(777)", s = "777")
-
 	s = FormatIntegerU(513, 0, 5, None)
 	UnitTest("FormatIntegerU(513, field width = 5)", s = "  513")
@@ -62,5 +57,4 @@
 	s = FormatIntegerD(-3, 2, 0, Sign)
 	UnitTest("FormatIntegerD(-3, precision = 2)", s = "-03")
-
 	s = FormatIntegerD(3, 0, 5, Sign)
 	UnitTest("FormatIntegerD(+3, field width = 5)", s = "   +3")
@@ -68,8 +62,6 @@
 	s = FormatIntegerO(&o1234567, DWORD_MAX, 0, None)
 	UnitTest("FormatIntegerO(&o1234567)", s = "1234567")
-
 	s = FormatIntegerO(&o1234567, DWORD_MAX, 0, Alt)
 	UnitTest("FormatIntegerO(&o1234567, Alt)", s = "01234567")
-
 	s = FormatIntegerO(0, DWORD_MAX, 0, Alt)
 	UnitTest("FormatIntegerO(0, Alt)", s = "0")
@@ -77,16 +69,30 @@
 	s = FormatIntegerX(&hffff, DWORD_MAX, 0, None)
 	UnitTest("FormatIntegerX(&hffff)", s = "ffff")
-
 	s = FormatIntegerX(&hffff, DWORD_MAX, 0, Cap)
 	UnitTest("FormatIntegerX(&hffff, Cap)", s = "FFFF")
-
 	s = FormatIntegerX(&h12345678, DWORD_MAX, 0, Alt)
 	UnitTest("FormatIntegerX(&h12345678, Alt)", s = "0x12345678")
-
 	s = FormatIntegerX(1, 2, 0, Alt Or Cap)
 	UnitTest("FormatIntegerX(1, precision = 2, Alt, Cap)", s = "0X01")
-
 	s = FormatIntegerX(0, 4, 0, Alt)
 	UnitTest("FormatIntegerX(0, precision = 4, Alt)", s = "0000")
+
+	s = FormatFloatF(1, 2, 0, None)
+	UnitTest("FormatFloatF(1.00, precision = 2)", s = "1.00")
+	s = FormatFloatF(123.456, 3, 0, None)
+	UnitTest("FormatFloatF(123.456, precision = 3)", s = "123.456")
+	s = FormatFloatF(2., 0, 0, Alt)
+	UnitTest("FormatFloatF(2., precision = 0, Alt", s = "2.")
+	s = FormatFloatF(-1.234e-1, 3, 0, None)
+	UnitTest("FormatFloatF(-1.234e-1, precision = 3) = -0.123", s = "-0.123")
+	s = FormatFloatF(-1.234e-2, 3, 0, None)
+	UnitTest("FormatFloatF(-1.234e-2, precision = 3) = -0.012", s = "-0.012")
+	s = FormatFloatF(-1.234e-3, 3, 0, None)
+	UnitTest("FormatFloatF(-1.234e-3, precision = 3) = -0.001", s = "-0.001")
+	s = FormatFloatF(-1.234e-4, 3, 0, None)
+	UnitTest("FormatFloatF(-1.234e-4, precision = 3) = -0.000", s = "-0.000")
+	'現状では末尾の桁の誤差を制御しきれないので、文字列全体の一致比較を避けている。
+	s = FormatFloatF(12345678901234567e3, 2, 0, None)
+	UnitTest("FormatFloatF(1.00, precision = 2)", Right$(s, 6) = "000.00")
 
 '	s = FormatIntegerLU(8589934590, DWORD_MAX, 0, None)
Index: trunk/TestCase/SimpleTestCase/SimpleTestCase.idx
===================================================================
--- trunk/TestCase/SimpleTestCase/SimpleTestCase.idx	(revision 358)
+++ trunk/TestCase/SimpleTestCase/SimpleTestCase.idx	(revision 364)
@@ -28,2 +28,6 @@
 #include "InterfaceTest.ab"
 _ClearNamespaceImported
+
+'リソースファイル
+#include "resource.ab"
+#resource "SimpleTestCase.rc"
Index: trunk/TestCase/SimpleTestCase/SimpleTestCase.pj
===================================================================
--- trunk/TestCase/SimpleTestCase/SimpleTestCase.pj	(revision 358)
+++ trunk/TestCase/SimpleTestCase/SimpleTestCase.pj	(revision 364)
@@ -23,5 +23,5 @@
 #DEBUG_EXE_PATH=
 
-#RESOURCE=0
+#RESOURCE=SimpleTestCase.rc
 
 #SOURCE
