public void CheckValidDataSource_emptyMappingName ()
		{
			StylePoker p = new StylePoker ();
			string[] arr = new string[] { "hi", "bye" };
			BindingContext bc = new BindingContext ();

			p.DoCheckValidDataSource ((CurrencyManager)bc[arr]);
		}
Example #2
0
        public void CheckValidDataSource_emptyMappingName()
        {
            StylePoker p = new StylePoker();

            string[]       arr = new string[] { "hi", "bye" };
            BindingContext bc  = new BindingContext();

            p.DoCheckValidDataSource((CurrencyManager)bc[arr]);
        }
Example #3
0
        public void CheckValidDataSource_nullSource()
        {
            StylePoker p = new StylePoker();

            p.DoCheckValidDataSource(null);
        }
		public void CheckValidDataSource_nullSource ()
		{
			StylePoker p = new StylePoker ();
			p.DoCheckValidDataSource (null);
		}