As per Jeff's suggestion here in the comments.

You can use this question as a formatting sandbox (if you can edit Community Wiki questions) and you can post answers if you want to test out formatting there as well.

Beware that since the changes to syntax highlighting in December 2010, and the inline hints added March 2011, no syntax highlighting is applied unless the question's tags or an inline hint enable it. So, to test highlighting here in the sandbox:

  1. Set some language tags to this question:

    • See the explanation and the list of languages.

    • Adding clashing tags, such as both and , enforces a fallback to default, which is different from "no highlighting". (These tags are currently set on this question.)

  2. Or: on the start of a line, specify a language inline using <!-- language: lang --> hints, and indent the code 4 spaces as usual:

    <!-- language: lang-html -->
    
        While not hinted otherwise: <html> source <b>goes</b> "here".
    
    <!-- language: lang-js -->
    
        var a = 3;
        while (not (a > 0)) {
            alert("JavaScript code <b>goes</b> here.");
        }
    
  3. Or:

    • Save your post.

    • Use something like Firebug (Firefox), Web Inspector (Safari, Chrome) or Developer Tools (Internet Explorer 8) to edit the resulting HTML.

    • Find the <pre> element and add the attribute class="prettyprint", or change it into something more specific, like class="lang-vb prettyprint".

    • Run the following in the location bar: javascript:prettyPrint();

share|improve this question
5  
1 ` 1` characters – agf Oct 2 '11 at 0:43
7  
Please convert me to a comment! – Michael Mrozek Nov 23 '11 at 19:56
2  
@Michael Mrozek: ok – BoltClock's a Unicorn Nov 23 '11 at 19:57
2  
This comment formatting looks a lot `like` this. – Paul Martel Jan 10 '12 at 22:48
15  
This so should be a part of every browser's stress test. – C. Ross Jan 12 '12 at 4:26
1  
1  
35  
edit edit edIT FAQ Faq fAq Stack Overflow Stack Overflow [meta] Stack Overflow Stack Overflow Meta Stack Overflow Science Fiction & Fantasy Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing‌​Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[‌​sqa.se]Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[s‌​qa.se]Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[sq‌​a.se]Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[sqa‌​.se]Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[sqa.‌​se]Software Quality Assurance & TestingSoftware Quality Assurance & Testing – lunboks Jan 26 '12 at 21:52
2  
To faq or not to faq – animuson Feb 3 '12 at 4:49
9  
@George: Ping test 14. – FlackBot Mar 4 '12 at 5:49
12  
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''' – NullUserException อ_อ Apr 6 '12 at 17:09
3  
4  
This is intentionally a [trivial answer][1]. [1]: meta.stackoverflow.com/q/98950/188688 – MvG Jul 22 '12 at 23:09
3  
۝҈ ๛๛๛ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈۝ – mellamokb Feb 1 at 14:42
4  
show 84 more comments

190 Answers

1 3 4 5 6 7

>! hides all.

share|improve this answer

italicboldness!

this is italicb*oldne*ss (I doub*t that *is a word)*

generated by:

gets.chomp.gsub(/./) {|x| '*'*rand(3)+'<!---->'+x+'<!---->'+'*'*rand(3)}
share|improve this answer

I'd like to see if this causes a formatting problem as described here (this answer is thus a word for word copy of this answer):


I generally get a bad feeling about code that has one view model directly communicating with another. I like the idea that the VVM part of the pattern should be basically pluggable and nothing inside that area of the code should depend of the existence of anything else within that section. The reasoning behind this is that without centralising the logic it can become difficult to define responsibility.

On the other hand, based on your actual code, it may just be that the ApplicationViewModel is badly named, it doesn't make a model accessible to a view, so this may simply be a poor choice of name.

Either way, the solution comes down to a break down of responsibility. The way I see it you have three things to achieve 1) Allow the user to request to connect to an address, 2) Use that address to connect to a server 3) Persist that address. I'd suggest that you need three classes instead of your two.

public class ServiceProvider
{
    public void Connect(Uri address)
    {
        //connect to the server
    }
} 

public class SettingsProvider
{
   public void SaveAddress(Uri address)
   {
       //Persist address
   }

   public Uri LoadAddress()
   {
       //Get address from storage
   }
}

public class ConnectionViewModel 
{
    private ServiceProvider serviceProvider;

    public ConnectionViewModel(ServiceProvider provider)
    {
        this.serviceProvider = serviceProvider;
    }

    public void ExecuteConnectCommand()
    {
        serviceProvider.Connect(Address);
    }        
}

The next thing to decide is how the address gets to the SettingsProvider. You could pass it in from the ConnectionViewModel as you do currently, but I'm not keen on that because it increases the coupling of the view model and it isn't the responsibility of the ViewModel to know that it needs persisting. Another option is to make the call from the ServiceProvider, but it doesn't really feel to me like it should be the ServiceProvider's responsibility either. In fact it doesn't feel like anyone's responsibility other than the SettingsProvider. Which leads me to believe that the setting provider should listen out for changes to the connected address and persist them without intervention. In other words an event:

public class ServiceProvider
{
    public event EventHandler<ConnectedEventArgs> Connected;
    public void Connect(Uri address)
    {
        //connect to the server
        if (Connected != null)
        {
            Connected(this, new ConnectedEventArgs(address));
        }
    }
} 

public class SettingsProvider
{

   public SettingsProvider(ServiceProvider serviceProvider)
   {
       serviceProvider.Connected += serviceProvider_Connected;
   }

   protected virtual void serviceProvider_Connected(object sender, ConnectedEventArgs e)
   {
       SaveAddress(e.Address);
   }

   public void SaveAddress(Uri address)
   {
       //Persist address
   }

   public Uri LoadAddress()
   {
       //Get address from storage
   }
}

This introduces tight coupling between the ServiceProvider and the SettingsProvider, which you want to avoid if possible and I'd use an EventAggregator here, which I've discussed in an answer to this question

To address the issues of testability, you now have a very defined expectancy for what each method will do. The ConnectionViewModel will call connect, The ServicePRovider will connect and the SerttingsProvider will persist. To test the ConnectionViewModel you probably want to convert the coupling to the ServiceProvider from a class to an interface:

public class ServiceProvider : IServiceProvider
{
    ...
}

public class ConnectionViewModel 
{
    private IServiceProvider serviceProvider;

    public ConnectionViewModel(IServiceProvider provider)
    {
        this.serviceProvider = serviceProvider;
    }

    ...       
}

Then you can use a mocking framework to introduce a mocked IServiceProvider that you can check to ensure that the connect method was called with the expected parameters.

Testing the other two classes is more challenging since they will rely on having a real server and real persistent storage device. You can add more layers of indirection to delay this (for example a PersistenceProvider that the SettingsProvider uses) but eventually you leave the world of unit testing and enter integration testing. Generally when I code with the patterns above the models and view models can get good unit test coverage, but the providers require more complicated testing methodologies.

Of course, once you are using a EventAggregator to break coupling and IOC to facilitate testing it is probably worth looking into one of the dependency injection frameworks such as Microsoft's Prism, but even if you are too late along in development to re-architect a lot of the rules and patterns can be applied to existing code in a simpler way.

share|improve this answer

Here is a link to a random .docx (now fixed)

Here is another and the linkifier is broke

share|improve this answer

test answer with at least 30 characters

see, look, 30 characters

blah blah more chars

share|improve this answer
show 1 more comment

Look at me!



















































I HATE <br> tags!



















share|improve this answer
public void test() {
     String temp = "MyOddCodeTest";
     int idx = 0;
 }

Here's a spoiler'd code block:

! function foo() { var bar = "hi"; }

share|improve this answer
1 3 4 5 6 7

You must log in to answer this question.

protected by Community Jun 29 '12 at 10:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged