Exemplo n.º 1
0
        [MethodImpl(MethodImplOptions.NoInlining)] // ICU4N NOTE: This attribute is required for whatever method calls TestFmwk.SourceLocation() to work in Release mode in .NET Standard 1.x
        public void TestSourceLocation()
        {
            string here      = TestFmwk.SourceLocation();
            string there     = CheckSourceLocale();
            string hereAgain = TestFmwk.SourceLocation();

            assertTrue("here < there < hereAgain", here.CompareToOrdinal(there) < 0 && there.CompareToOrdinal(hereAgain) < 0);
        }
Exemplo n.º 2
0
 public string CheckSourceLocale()
 {
     return(TestFmwk.SourceLocation());
 }