Esempio n. 1
0
        public void TestGetTweetsWithoutSettings()
        {
            com.intridea.presently.PresentlyWebPart part = new com.intridea.presently.PresentlyWebPart();
            String tweets = part.GetTweets();

            Assert.IsTrue(tweets.Length > 0);
        }
Esempio n. 2
0
        public void TestGetTweets()
        {
            com.intridea.presently.PresentlyWebPart part = new com.intridea.presently.PresentlyWebPart("pyu", "test1234", "test.cs.intridea.com");
            String tweets = part.GetTweets();

            Assert.IsTrue(tweets.Length > 0);
        }
 public void TestGetTweetsWithoutSettings()
 {
     com.intridea.presently.PresentlyWebPart part = new com.intridea.presently.PresentlyWebPart();
     String tweets = part.GetTweets();
     Assert.IsTrue(tweets.Length > 0);
 }
 public void TestGetTweets()
 {
     com.intridea.presently.PresentlyWebPart part = new com.intridea.presently.PresentlyWebPart("pyu","test1234", "test.cs.intridea.com");
     String tweets = part.GetTweets();
     Assert.IsTrue(tweets.Length > 0);
 }