BDD Style Naming Macro for Visual Studio
I've really jumped on board with BDD (Behaviour Driven Development) in the past week. I've been reading about it for awhile, but it wasn't until I started actually doing it on a side project of my own that I've really begun to realise how good it can be. The natural language naming style of the 'specs' (not 'tests' anymore) in different 'contexts' is an excellent way to express through code what your systems does (or should do).
If you have no idea what I'm blabbering on about, you should probably do a google search on 'BDD' or check out the links below:
Writing software BDD style really changes the way you think about how you express what your system does through your tests/specs. Writing specs in different 'Contexts' have enabled me to make my tests more precise and to the point. It is definitely something that I will strive to start using for real projects in the coming few months.
Anyway, so now that you know what BDD is, I can get to the original reason I started this post: a handy BDD naming macro that speeds up your development time by formatting your naturally written sentences into a properly constructed test case shell.
eg. You type:
should be able to load all items
<macro executed via keyboard shortcut> and you get:
[Test]
public void Should_be_able_to_load_all_items()
{
}
Having something like this just makes writing your specs a whole lot simpler.
Now I just want to point out, I didn't come up with the idea for this macro. It was developed originally by Scott Bellware and then evolved by Terry Hughes. This is outlined in a blog article here.
The code for the macro shown on the link above just replaces the spaces with underscores. I've evolved it further to also:
- Append '()' to the end of the line
- Prepend '[Test]' to the line above (because I'm still using NUnit as my testing/spec framework)
- Capitalise the first letter of the spec name
- Provide an empty method body enclosed by '{' and '}'.
Code is below:
Imports System
Imports EnvDTE
Imports EnvDTE80
Imports System.Diagnostics
Public Module CodeEditor
Sub FormatTestCaseBDDStyle()
If DTE.ActiveDocument Is Nothing Then Return
Dim selection As TextSelection = CType(DTE.ActiveDocument.Selection(), EnvDTE.TextSelection)
selection.SelectLine()
If selection.Text.Trim() = "" Then Return
Dim prefix As String = "public void "
Dim index As Integer = selection.Text.IndexOf(prefix)
Dim description As String = selection.Text.Replace(prefix, String.Empty).Trim() + "()"
description = description.Replace(" ", "_").Replace("'", "_")
description = description(0).ToString().ToUpper() + description.Substring(1)
selection.Text = ControlChars.Tab + _
ControlChars.Tab + _
"[Test]" + _
ControlChars.NewLine + _
ControlChars.Tab + _
prefix + description + _
ControlChars.NewLine + _
"{" + _
ControlChars.NewLine + _
ControlChars.Tab + _
"}"
selection.EndOfLine()
selection.LineUp()
End Sub
End Module
So basically when you sit down to write your next spec, you just write the sentence as you would if you were speaking to a human, invoke the macro keyboard shortcut, and it does the rest for you.
For help on getting the macro setup in Visual Studio check out the following links:
Just as a side note, the project I've started using BDD on (and NHibernate too for that matter) is going to be basically a CMS for another website of mine that I'm slowly building up: www.pineappletinfeet.com. I will be releasing the source code of this project in the future so you can see my journey with BDD.
Trackbacks
-
15 January 2008, 7:30 PM
DotNetKicks.com wrote:
You've been kicked (a good thing) - Trackback from DotNetKicks.com






Nice, I definitely like. But I made some changes when I added it to my macros.
The two issues I have is that it won't camel case the method name, and actually writing out the method name causes intellisense to freak out. I added some code to fix the first issue (I prefer no _'s and camel casing), changed it for VS unit testing and solved the intellisense issue by allowing the method name to be extracted from a comment, i.e.: // null case test
If DTE.ActiveDocument Is Nothing Then Return
Dim selection As TextSelection = CType(DTE.ActiveDocument.Selection(), EnvDTE.TextSelection)
selection.SelectLine()
If selection.Text.Trim() = "" Then Return
Dim text As String
text = selection.Text.Replace("//", "")
text = text.Trim()
Dim result As New StringBuilder()
result.AppendLine("[TestMethod()]")
result.Append("public void ")
Dim parts As String() = text.Split(New Char() {" "c}, StringSplitOptions.RemoveEmptyEntries)
For Each part As String In parts
result.Append(part.Substring(0, 1).ToUpper)
result.Append(part.Substring(1, part.Length - 1))
Next
result.AppendLine("()")
result.AppendLine("{")
result.AppendLine("}")
selection.Text = result.ToString()
DTE.ExecuteCommand("Edit.FormatDocument")
selection.LineUp()
selection.NewLine()
selection.LineUp()
Reply to this
I had the same issue with IntelliSense trying to take over the world, so I turned the autocomplete of 'Letters and digits' off in my Resharper settings (Resharper had taken over the standard VS intellisense). This allowed me to type natural sentences, and if I need to invoke intellisense I just use Ctrl+Space.
Reply to this
I've been using it today and determined that I suck. Here's a better version; you 1) write, in comments, one test description per line (one or more lines) 2) select all the lines 3) run the macro. It creates multiple at once, and uses VB's facilities to do upper casing. Using the TextSelection object rather than a stringbuilder makes sure indentation of new lines is correct. Also, adds your original description as a description property
Sub FormatTestCaseBDDStyle()
If DTE.ActiveDocument Is Nothing Then Return
Dim selection As TextSelection = _
CType(DTE.ActiveDocument.Selection(), _
EnvDTE.TextSelection)
If selection.Text.Trim() = "" Then Return
Dim text As String
text = selection.Text.Replace("//", "")
selection.Text = ""
Dim lines = text.Split(Environment.NewLine.ToCharArray(), _
StringSplitOptions.RemoveEmptyEntries)
Dim result As New StringBuilder()
For Each line As String In lines
line = line.Trim()
selection.Text += "[Description(""" + line + """)]"
selection.NewLine()
selection.Text += "[TestMethod()]"
selection.NewLine()
selection.Text += "public void " + StrConv(line, _
VbStrConv.ProperCase).Replace(" ", "") + "()"
selection.NewLine()
selection.Text += "{"
selection.NewLine()
selection.NewLine()
selection.Text += "}"
selection.NewLine()
Next
selection.LineUp()
selection.LineUp()
End Sub
Reply to this
That was inspiring,
I'm new to BDD. I folowed your links ,And I liked it so much
Thanks for writing, most people don't bother.
Reply to this
It's so tough to encounter right information on the blog. I really loved reading this post. It has strengthen my faith more. You all do such a great job at such Concepts... can't tell you how much I,I want to thank you for this informative read, I really appreciate sharing your post
Reply to this
Whatever your taste, this is a great story! Bingo!
Reply to this
I have no idea about BDD.After reading your article I got to know some ideas.
Reply to this
Great artichle, thanks for sharing.
Reply to this
I wanted to thank you for this excellent read!! I definitely loved every little bit of it. I have you bookmarked your web site to check out the latest stuff you post.
Reply to this
I turned the autocomplete of 'Letters and digits' off in my Resharper settings (Resharper had taken over the standard VS intellisense). This allowed me to type natural sentences, and if I need to invoke intellisense I just use Ctrl+Space.
Reply to this
Kal online
Than you need go tokal geons see the some player to took on the task, kal online geons the first requirement of the task is to see information in view of intelligence in the people, kal gold click on the view automatically
Reply to this
Great read. I enjoyed reading your post and I like your take on the issue. Thanks.
Reply to this
Nice post.
Reply to this
Provides genuine and guaranteed real human worldwide and country targeted unique visitors for your website. Very affordable traffic packages available.
Reply to this
I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well.
Reply to this
Many Women just like to shop for handbags from top designers like Prada, Fendi, Christian Dior, Hermes, and Gucci. This is because of the great appeal and elegance that these bags possess. What is more, cheap knockoff bags are fashionable. If you are into Prada, there are several styles for you to choose from. The bad thing about designer brands is when you do not know which one is actually real and which is fake. If you want to get the best deal, you should be able to identify an authentic replica prada bags from a fake handbags for sale. In this, you will be able to pay less for the handbags.
Reply to this
hey buddy,this is one of the best posts that I’ve ever seen; you may include some more ideas in the same theme. I’m still waiting for some interesting thoughts from your side in your next post.
Reply to this
This is one of the best posts that I’ve ever seen; you may include some more ideas in the same theme. I’m still waiting for some interesting thoughts from your side in your next post.
Reply to this
it's good to see this information in your post, i was looking the same but there was not any proper resource, thanx now i have the link which i was looking for my research.
Reply to this
I usually don’t post in Blogs but your blog forced me to, amazing work.. beautiful...
Reply to this
It creates multiple at once, and uses VB's facilities to do upper casing. Using the TextSelection object rather than a stringbuilder makes sure indentation of new lines is correct. Also, adds your original description as a description property
Reply to this
Writing specs in different 'Contexts' have enabled me to make my tests more precise and to the point.
Reply to this
I really loved reading this post. It has strengthen my faith more. You all do such a great job at such Concepts... can't tell you how much I,I want to thank you for this informative read, I really appreciate sharing your post
Reply to this
I can get to the original reason I started this post: a handy BDD naming macro that speeds up your development time by formatting your naturally written sentences.
Reply to this
buffets oak
antique table furniture
vintage antique
antique lamps
classical furniture
dining furniture
old antique
cabriole legs
rare antiques
antique silverware
antique style
Reply to this
It is good that we are able to take the loan moreover, it opens up completely new possibilities.
Reply to this
I'm going to blog about that...
Reply to this
Hey, I heard about Body Modelling a couple months back, And thought it'd be a good way to make some extra money.
Reply to this
I just stumbled upon this awesome post and want to say that I have really enjoyed reading it. Thanks for sharing such well written articles.
Reply to this
I'm using MSpec and you're right, those would be handy MSpec features to support, though I haven't taken advantage of them much in my own work yet, which is why they're not built into the macro. If you get around to adding that support, let me know!
meilleur casino de jeux virtuels
Reply to this
uses VB's facilities to do upper casing. Using the TextSelection object rather than a stringbuilder makes sure indentation of new lines is correct. Also, adds your original description as a description property
Reply to this
I wanted to thank you for this excellent read. I definitely loved every little bit of it. I have you bookmarked your site to check out the latest stuff you post. Massage beds
Reply to this
Thanks for rendering the quality data as there are lots of web sites that can just crack your mind into pieces for its “English” texts.
Reply to this
Hi,
It is realy informative post about the BDD. I really enjoy the reading and learned some thing new here. I will surely comeback for more information.
Reply to this
I'm using MSpec and you're right, those would be handy MSpec features to support, though I haven't taken advantage of them much in my own work yet, which is why they're not built into the macro. If you get around to adding that support, let me know!
Reply to this
the standard VS intellisense). This allowed me to type natural sentences, and if I need to invoke intellisense I just use Ctrl+Space.
Reply to this
Missing the tang of the home made chai???? Is the same freshness missing???? Are you not getting the same taste and energy??? if yes, then come at the door of p.c.w where we serve India’s first home made chai BAS YUN HI…
Reply to this
PCW Chai is been offered by mr.sugan pandey since 1965 at south extension phase 1 with best quality and service. From its launch till today p.c.w is been serving thousands of its proud customers to come and have the taste of the same home made tea which they are missing.
Reply to this
Cool post very informative I just found your blog and read through a few posts although this is my first comment, i'll be including it in my favorites and visit again for sure
Reply to this
I asked Joe and Scott for a peer review but got impatient. I'd like some more tips as I'm unset as of now. I'm not asserting a position of authority here, so I hope this will solicit some debate, tips, tricks, etc. In general, BDD on .NET (from my view) is new craft.
Reply to this
I really enjoy the reading and learned some thing new here. I will surely comeback for more information.
Reply to this
You all do such a great job at such Concepts... can't tell you how much I,I want to thank you for this informative read, I really appreciate sharing your post
Reply to this
Top post. I look forward to reading more. Cheers
Reply to this
I found your website perfect for my needs. It contains wonderful and helpful posts. I have read most of them and got a lot from them. To me, you are doing the great work.
Reply to this
Hosting Murah Indonesia Indositehost.com Hosting Murah Indonesia Indositehost.com PutraHosting.com dapur Hosting Hemat PutraHosting.com Dapur Hosting Hemat ingat solo ingat soloaja.com
Seo Ranger badabing NegeriAds.com Solusi Berpromosi badabung Catatan Si Bongo gabung NegeriAds.com Solusi Berpromosi
Keblinger join checkin lagi NegeriAds.com Solusi Berpromosi siapo yang kentut Seo Rafflesia Fitri Sartika Sitemap
NegeriAds.com Solusi Berpromosi buntut nyo kurokan Hellomotto hayooo tak gendong NegeriAds.com Solusi Berpromosi Angela Backlinks
Fitri NegeriAds.com Solusi Berpromosi Manden Blogger marlina
ArenaBetting.com Dukung Fair Play FIFA World Cup AFSEL 2010 ArenaBetting.com Dukung Fair Play FIFA World Cup AFSEL 2010 ArenaBetting.com Dukung Fair Play FIFA World Cup AFSEL 2010 ArenaBetting.com Dukung Fair Play FIFA World Cup AFSEL 2010 ArenaBetting.com Dukung Fair Play FIFA World Cup AFSEL 2010 Reply to this
Seo Ranger badabing NegeriAds.com Solusi Berpromosi badabung Catatan Si Bongo gabung NegeriAds.com Solusi Berpromosi
Keblinger join checkin lagi NegeriAds.com Solusi Berpromosi siapo yang kentut Seo Rafflesia Fitri Sartika Sitemap
NegeriAds.com Solusi Berpromosi buntut nyo kurokan Hellomotto hayooo tak gendong NegeriAds.com Solusi Berpromosi Angela Backlinks
Fitri NegeriAds.com Solusi Berpromosi Manden Blogger marlina
Reply to this
I can get to the original reason I started this post: a handy BDD naming macro that speeds up your development time by formatting your naturally written sentences into a properly constructed test case shell.
Reply to this
thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well.
Reply to this
It sould be very practicable to order thesis sample about this good post from the dissertation writing service especially when you do not have time.
Reply to this
Your topics close to this good topic appeared to be smashing I suggest to buy custom essay papers or some people should to buy research papers.
Reply to this
To perform the phd thesis related to this good topic is not easy but you deal with that. When any writer was like, scholars will never have any problems with the buy dissertation service.
Reply to this
It is really important to make the best quality social issues essay & essay referring to this good post to have the good grade at the high school.
Reply to this
The metropcs ringtones will make your mobile really unique, thence I will advice to order the compose ringtones from the buy ringtones corporation.
Reply to this
The internet is overflowing with the job for writers service that will provide all required releases connecting to this topic.
Reply to this
Professors oft assign heavy coursework writing tasks. However, what to do if you're lack of time? I always propose to buy coursework in such a case!
Reply to this
I specialize in astrological forecasts through instant horoscope charts. ... Destle.com Offers Live Online Psychic Readings With free psychic readings
Reply to this
I do think that it’s not the best decision to waste valuable time composing the customized essays. Lots of students move other way! They do not perform the laboratory report writing themselves. They buy paper in the professional research papers writing service.
Reply to this
Beautiful… should I try those clue? Nevertheless, you should not be embarrassed, because writing service can make you happy.
Reply to this
If you have got a chance to utilize the how to buy an essay service, never hesitate, purchase research papers and just relax.
Reply to this
Executive range of high quality Office Chairs for your home and office. Leather office chairs on sale.
Reply to this
I was searching for information about this on Yahoo and found your article. I found it to be well explained. Thanks
Reply to this
Well worth to read this article, pariuri sportive thanks for sharing this information. With this article you offered me got a chance to know about this, poker online anyway i say Great Article! bet365 and waiting for you next article about bwin this interesting subject.
Reply to this
I spend alot of time trying to figure out the clues that you left. I guess it will be up to someone much smarter then I am. Anyways good luck on the new site.
Reply to this
Heartgard is used to prevent heat worms and to treat and control roundworms and hook worms in dogs of all breed. It eliminates the heartworm larvae and prevents the infection. It is available in the form of a chewable tablet made of beef from TruMed Canada Pharmacy Online.
Reply to this
So basically when you sit down to write your next spec, you just write the sentence as you would if you were speaking to a human, invoke the macro keyboard shortcut, and it does the rest for you.
Reply to this
I have been searching for a site like this in the field I am interested in. I am a great fan. I also like all things about do it yourself suggestions that help you to save.
Reply to this
It creates multiple at once, and uses VB's facilities to do upper casing. Using the TextSelection object rather than a stringbuilder makes sure indentation of new lines is correct
Reply to this
It contains wonderful and helpful posts. I have read most of them and got a lot from them. To me, you are doing the great work.
Reply to this
I have read it
Reply to this
one of the best posts that I’ve ever seen; you may include some more ideas in the same theme. I’m still waiting for some interesting thoughts from your side in your next post.
Reply to this
I really love your blog, Its great to find not absolutely everyone is just posting a ton of rubbish these days!
Reply to this
Fine information, many thanks to the author. It is puzzling to me now, but in general, the usefulness and significance is overwhelming. Very much thanks again and good luck!
Reply to this
This is a really good read for me, Must admit that you are one of the best bloggers I ever saw.Thanks for posting this informative article.
Reply to this
I completely agree with the above comment, the internet is with a doubt growing into the most important medium of communication across the globe and its due to sites like this that ideas are spreading so quickly.
Reply to this
I happen to enter your blog with the help of google search. To my sheer luck I got what I was searching for. Thanks
Reply to this
Thank you for the heads up on this, really appreciate it. Keep updating here!!
Reply to this
Begin your term paper writing and do not have knowledge the proper way to complete it? You not have to be worried, simply buy custom essays Online and be sure that your custom essay writing are performed by experienced essay writers.
Reply to this
It's well known that the essay papers accomplishing procedure can be annoying. Therefore, smart persons do not waste their free time and buy essays . Moreover, that is not a kind of cheating, I opine!
Reply to this
I'm not asserting a position of authority here, so I hope this will solicit some debate, tips, tricks, etc. In general, BDD on .NET (from my view) is new craft.
Reply to this
you may include some more ideas in the same theme. I’m still waiting for some interesting thoughts from your side in your next post.
Reply to this
Ya its is really a nice software i really enjoyed using this include some more alos in this...
Reply to this
Thanks for sharing these useful information!
Reply to this
Right. I like very much the articles drafted in view of this. A shopmate announce me your site, ever since my first visit, I have been absorbed. Don't spend your life in questions and concerns, just order original custom papers. Keep the articles coming!
Reply to this
i am happy can visit this site thanks very much for share about it tetembak it's My Story Share 4 you Blogger Gurem Ardjomb dagdigdug blogdetik wordpress wownulis livejournal ngeblogs sekedar menulis multiply bluesafadi Xanga Blog Tempat menulis
Blogger Indonesia dukung internet aman, sehat & manfaat Blogger Indonesia dukung internet aman, sehat & manfaat Blogger Indonesia dukung internet aman, sehat & manfaat
hosting Murah Indonesia Indositehost.com hosting Murah Indonesia Indositehost.com hosting Murah Indonesia Indositehost.com hosting murah indonesia indositehost.com hosting murah indonesia indositehost.com hosting murah indonesia indositehost.com Day trans travel jakarta bandung Day trans travel jakarta bandung Any Knowledge Day trans travel jakarta bandung Travel Jakarta Bandung Travel Jakarta Bandung Travel Jakarta Bandung Advisola Reply to this
Thanks for share good ideas...
Reply to this
tetembak it's My Story Share 4 you Blogger Gurem Ardjomb dagdigdug blogdetik wordpress wownulis livejournal ngeblogs sekedar menulis multiply bluesafadi Xanga Blog Tempat menulis
Blogger Indonesia dukung internet aman, sehat & manfaat Blogger Indonesia dukung internet aman, sehat & manfaat Blogger Indonesia dukung internet aman, sehat & manfaat
hosting Murah Indonesia Indositehost.com hosting Murah Indonesia Indositehost.com hosting Murah Indonesia Indositehost.com hosting murah indonesia indositehost.com hosting murah indonesia indositehost.com hosting murah indonesia indositehost.com Day trans travel jakarta bandung Day trans travel jakarta bandung Any Knowledge Day trans travel jakarta bandung Travel Jakarta Bandung Travel Jakarta Bandung Travel Jakarta Bandung Advisola Villebiz
Reply to this
can't tell you how much I,I want to thank you for this informative read, I really appreciate sharing your post.........
Reply to this
delhi shopping
Health is Wealth
Racing Bikes
Love sms in hindi
cheap seo price in india
Delhi Travle
India Sports
Movie Wallpaper
Office chairs
Electronics items
Shopping Masti
shopping Online
computers laptops
Real estate
healthy people
online casino game
Friends Life
Finance services
Sports Euipments
Tour and travel
Reply to this
I enjoyed reading your post and I like your take on the issue. Thanks.
Reply to this
Good post. I am also going to write a blog post about this.
Reply to this
How to link visual studio or vb with java programming?
Reply to this
I wanted to thank you for this excellent read!! I definitely loved every little bit of it. I have you bookmarked your web site to check out the latest stuff you post.
Reply to this
It's been great time reading your post. interesting ans information thanks for sharing.
Photo Editing ,3D Architectural Rendering , Cheap Discount Furniture Sales, Custom Writing Essays UK, Digital Marketing Solutions, Real Estate, Plots, Apartments and Email Marketing California USA, Directory Submission, Article Submission, Essays, Assignment, Coursework
Reply to this
buy flomax Rx Prescription Drug as flomax tamsulosin, buy flomax astrazeneca capsules for to treat the symptoms of benign prostatic hyperplasia from TruMedCanada in B.C. Canada.
Reply to this
Using the TextSelection object rather than a stringbuilder makes sure indentation of new lines is correct.
Reply to this
Thank you for the heads up, keep updating here!
Reply to this
Thanks for submitting this macros code and it is really nice and good to see keep on updating new codes......
Reply to this
Beautiful… should I try those clue? Nevertheless, you should not be embarrassed, because writing service can make you happy.
Reply to this
Always good to see, this was obvious a excellent post. In theory would like to be such a good writer too. You need time to creat that brilliantand in addition real effort to create a excellent article.
Reply to this
can't tell you how much I,I want to thank you for this informative read, I really appreciate sharing your post.........
Reply to this
Thanks for sharing this useful information.
Reply to this
Very informative post above. It contains a lot of information and knowledge .Really i learned so many things from your post .Thanks for sharing it with me.
Reply to this
I dont even remember how i reached your site but it doesnt matter, cause i’m so happy i found it, it really made me think, keep up the good work.
Reply to this
Heard about this site from my friend. He pointed me here and told me I’d find what I need. He was right! I got all the questions I had, answered. Didn’t even take long to find it. Love the fact that you made it so easy for people like me.
Reply to this
I offers Online Free Astrology, Career Report, Pure psychic reading, Love and Marriage solutions, Simple love spells, spells magic, Protection spells, Money, Guaranteed love, Marriage spells, Vedic Pooja online In India by me.
Reply to this
I try those clue? Nevertheless, you should not be embarrassed, because writing service can make you happy.
Reply to this
Took me time to read all the comments, but I really enjoyed the article. It proved to be Very helpful to me and I am sure to all the commenters here! It's always nice when you can not only be informed, but also entertained!
Reply to this
Advair is used in the management of asthma and chronic obstructive pulmonary disease (COPD). Fluticasone, a corticosteroid, is the anti-inflammatory component of the combination, while Salmeterol treats constriction of the airways. Together, they relieve the symptoms of coughing, wheezing and shortness of breath better than either Fluticasone or Salmeterol taken on its own.
Reply to this
I want to thank you for this informative read, I really appreciate sharing your post.........
Reply to this
You need time to creat that brilliantand in addition real effort to create a excellent article.
Reply to this
thank you for this excellent read!! I definitely loved every little bit of it. I have you bookmarked your web site to check out the latest stuff you post.
Reply to this
I completely agree with the above comment, the internet is with a doubt growing into the most important medium of communication across the globe and its due to sites like this that ideas are spreading so quickly.
Reply to this
this was obvious a excellent post. In theory would like to be such a good writer too. You need time to creat that brilliantand in addition real effort to create a excellent article.
Reply to this
thats really a good quality post keep it up.
Reply to this
Visual Studio that Microsoft did not care about CSS on a check box because in Internet Explorer its probably the element that can be styled the least. Why would Microsoft care about putting a CSS class on the check box when you can’t change color, you can’t change margins, you can’t change padding, you can’t change size, you can’t change anything...
Reply to this
Its good things, keep share
Reply to this
Very awesome post. I just stumbled upon your web site and wished to say that Ihave truly liked reading your web site posts. Anyway I’ll be subscribing to your web site and I hope you post yet again!Our Puma Shoes store offers you all kinds of puma shoes, like Puma Clyde Shoes,high quality and affordable price.
Reply to this
It is so amazing that you’ve got so myny people to help you compose the blog and it is really exciting to read and enjoy all the details of your stories that have never touched me.
Reply to this
love spells, spells magic, Protection spells, Money, Guaranteed love, Marriage spells, Vedic Pooja online In India by me.
Reply to this
have no idea about BDD.After reading your article I got to know some ideas.
Reply to this
Great post - Just subscriped to your RSS feed.. Thanks
Reply to this
An interesting post explaining the meaning in a clear manner.
Reply to this
This is my first time i visit here. I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! keep up the good work.
Reply to this