示例#1
0
        public void TestRandomSic()
        {
            var testResult = StandardIndustryClassification.RandomStandardIndustryClassification();

            Assert.IsNotNull(testResult);
            System.Diagnostics.Debug.WriteLine(testResult.Value);
        }
示例#2
0
        public void TestToData()
        {
            var testSubject = new IObviate[]
            {
                StandardIndustryClassification.RandomStandardIndustryClassification()
            };

            foreach (var ts in testSubject)
            {
                Console.WriteLine();
                var testResult = ts.ToData(KindsOfTextCase.Kabab);
                Assert.IsNotNull(testResult);
                Assert.AreNotEqual(0, testResult.Count);
                foreach (var k in testResult.Keys)
                {
                    Console.WriteLine($"{k}: {testResult[k]}");
                }
            }
        }